C# – Get a list of types defined in an assembly without loading it
There are two ways to get type information from an assembly without loading it: Reflection-only / metadata load. Search through the source files for a pattern. In this article, I’ll show both approaches for outputting a list of types in an assembly. Reflection-only / metadata load There could be many reasons why you wouldn’t want … Read more