如何测试类型是否是匿名的?

时间:2010-03-20 12:44:22

标签: c# reflection anonymous-types

我有以下方法将对象序列化为HTML标记。如果类型不是Anonymous,我只想这样做。

private void MergeTypeDataToTag(object typeData)
{
    if (typeData != null)
    {
        Type elementType = typeData.GetType();

        if (/* elementType != AnonymousType */)
        {
            _tag.Attributes.Add("class", elementType.Name);    
        }

        // do some more stuff
    }
}

有人可以告诉我如何实现这个目标吗?

由于

5 个答案:

答案 0 :(得分:59)

来自http://www.liensberger.it/web/blog/?p=191

private static bool CheckIfAnonymousType(Type type)
{
    if (type == null)
        throw new ArgumentNullException("type");

    // HACK: The only way to detect anonymous types right now.
    return Attribute.IsDefined(type, typeof(CompilerGeneratedAttribute), false)
        && type.IsGenericType && type.Name.Contains("AnonymousType")
        && (type.Name.StartsWith("<>") || type.Name.StartsWith("VB$"))
        && (type.Attributes & TypeAttributes.NotPublic) == TypeAttributes.NotPublic;
}

编辑:
扩展方法的另一个链接:Determining whether a Type is an Anonymous Type

答案 1 :(得分:14)

又快又脏:

if(obj.GetType().Name.Contains("AnonymousType"))

答案 2 :(得分:9)

您可以检查名称空间是否为空。

public static bool IsAnonymousType(this object instance)
{

    if (instance==null)
        return false;

    return instance.GetType().Namespace == null;
}

答案 3 :(得分:7)

好吧,今天compiier生成匿名类型作为通用AND密封类。一个矛盾的组合,因为泛型类的特化是一种继承,不是吗? 所以你可以检查一下: 这是通用型吗? 是=&gt; 2)它的定义是密封的&amp;&amp;不公开? 是=&gt; 3)它的定义是否具有CompilerGeneratedAttribute属性? 我想,如果这三个标准一起成立,我们有一个匿名类型...... 嗯......所描述的任何方法都存在问题 - 它们使用的方面可能会在下一版本的.NET中发生变化,直到Microsoft将IsAnonymous布尔属性添加到Type类。希望它会在我们都死之前发生...... 直到那天,它可以这样检查:

using System.Runtime.CompilerServices;
using System.Reflection;

public static class AnonymousTypesSupport
{
    public static bool IsAnonymous(this Type type)
    {
        if (type.IsGenericType)
        {
            var d = type.GetGenericTypeDefinition();
            if (d.IsClass && d.IsSealed && d.Attributes.HasFlag(TypeAttributes.NotPublic))
            {
                var attributes = d.GetCustomAttributes(typeof(CompilerGeneratedAttribute), false);
                if (attributes != null && attributes.Length > 0)
                {
                    //WOW! We have an anonymous type!!!
                    return true;
                }
            }
        }
        return false;
    }

    public static bool IsAnonymousType<T>(this T instance)
    {
        return IsAnonymous(instance.GetType());
    }
}

答案 4 :(得分:5)

检查CompilerGeneratedAttributeDebuggerDisplayAttribute.Type

这是编译器为无名类型

生成的代码
[CompilerGenerated, DebuggerDisplay(@"\{ a = {a} }", Type="<Anonymous Type>")]
internal sealed class <>f__AnonymousType0<<a>j__TPar>
{
...
}