UnityEditor.GUID.ParseExact C# (CSharp) Method

ParseExact() public method

public ParseExact ( string hex ) : bool
hex string
return bool
        public bool ParseExact(string hex)
        {
            this.HexToGUIDInternal(hex, ref this);
            return !this.Empty();
        }