Signum.Entities.Basics.TypeEntity.IsType C# (CSharp) Method

IsType() public method

public IsType ( Type type ) : bool
type System.Type
return bool
        public bool IsType(Type type)
        {
            if (type == null)
                throw new ArgumentException("type");

            return ClassName == type.Name && Namespace == type.Namespace;
        }