PowerAssert.Infrastructure.ExpressionParser.IsAnonymousType C# (CSharp) Method

IsAnonymousType() static private method

static private IsAnonymousType ( Type t ) : bool
t System.Type
return bool
        static bool IsAnonymousType(Type t)
        {
            return t.Name.StartsWith("<>f__AnonymousType");
        }