Ancestry.QueryProcessor.Compile.ReflectionUtility.IsTupleType C# (CSharp) Method

IsTupleType() public static method

public static IsTupleType ( System type ) : bool
type System
return bool
        public static bool IsTupleType(System.Type type)
        {
            return type.GetCustomAttribute(typeof(Type.TupleAttribute), true) != null;
        }