我的程序中有一段代码,通过检查编译器生成的类的类型名称中是否包含"DisplayClass"来区分它们
看完这个答案,我想我需要一个更好的方法。如何在.NET中区分编译器生成的类和用户类?
检查类的属性CompilerGenerated
,以将编译器生成的类与其他区分开来
http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.compilergeneratedattribute.aspx
在反射器中,显示类可以如下所示:
[CompilerGenerated]
private sealed class <>c__DisplayClass1
{..}
这个答案真的帮了我一把!以下是我需要添加的代码,以检查CompilerGeneratedAttribute
的Type
,正如Valentin Kuzub所提到的:
using System.Runtime.CompilerServices;
//...
bool IsCompilerGenerated(Type t)
{
var attr = Attribute.GetCustomAttribute(t, typeof(CompilerGeneratedAttribute));
return attr != null;
}