Adf.Base.Domain.GuidPropertyParser.IsParsable C# (CSharp) Метод

IsParsable() публичный Метод

Indicates whether the specified Type is parsable or not.
public IsParsable ( Type type ) : bool
type System.Type The specified .
Результат bool
        public bool IsParsable(Type type)
        {
            return type.Equals(typeof(Guid));
        }