When using Assembly.GetTypes() I get types that have Type.Name that begin with <>c.....
Assembly.GetTypes()
Type.Name
<>c....
I tried to google if this is an
These are compiler generated display classes. You can distinguish them by looking for the CompilerGeneratedAttribute:
var attr = Attribute.GetCustomAttribute(type, typeof(CompilerGeneratedAttribute));