586
With PieMixin
(lemmy.world)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Modern .NET is reducing dependence on reflection. System.Text.JSON and other core libraries have leveraged source generation to produce AOT + trim friendly, reflection free code. But yeah, it's not a taboo like say
dynamic
, it's perfectly normal to use reflection in idiomatic C# code.