Signum.Entities.Basics.TypeEntity.IsType C# (CSharp) Méthode

IsType() public méthode

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

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