如何区分编译器生成的类和.NET中的用户类

时间:2011-06-20 23:38:32

标签: c# .net reflection compiler-construction

我的程序中有一段代码,通过检查编译器生成的类是否在其类型名称中包含“DisplayClass”来区分编译器生成的类。
在阅读this answer时,我想我需要一个更好的方法。如何从.NET中的用户类中删除编译器生成的类?

2 个答案:

答案 0 :(得分:13)

检查属性CompilerGenerated的类,以区分编译器生成的类与其他

http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.compilergeneratedattribute.aspx

在反射器中,可以看到 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;
}