UnityEditor.GUID.GUID C# (CSharp) Method

GUID() public method

public GUID ( string hexRepresentation ) : System
hexRepresentation string
return System
        public GUID(string hexRepresentation)
        {
            this.m_Value0 = 0;
            this.m_Value1 = 0;
            this.m_Value2 = 0;
            this.m_Value3 = 0;
            this.ParseExact(hexRepresentation);
        }