UnityEditor.GUID.GUID C# (CSharp) Méthode

GUID() public méthode

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