Adf.Base.Domain.GuidPropertyParser.IsParsable C# (CSharp) Method

IsParsable() public method

Indicates whether the specified Type is parsable or not.
public IsParsable ( Type type ) : bool
type System.Type The specified .
return bool
        public bool IsParsable(Type type)
        {
            return type.Equals(typeof(Guid));
        }