我的程序中有一段代码,通过检查编译器生成的类是否在其类型名称中包含“DisplayClass”来区分编译器生成的类。
在阅读this answer时,我想我需要一个更好的方法。如何从.NET中的用户类中删除编译器生成的类?
答案 0 :(得分:13)
检查属性CompilerGenerated
的类,以区分编译器生成的类与其他
在反射器中,可以看到 Display 类:
[CompilerGenerated]
private sealed class <>c__DisplayClass1
{..}
答案 1 :(得分:7)
这个答案真的帮助了我!以下是我需要添加的代码,用于检查Type
CompilerGeneratedAttribute
,如Valentin Kuzub所述:
using System.Runtime.CompilerServices;
//...
bool IsCompilerGenerated(Type t)
{
var attr = Attribute.GetCustomAttribute(t, typeof(CompilerGeneratedAttribute));
return attr != null;
}