UnityEngine.Hash128.Parse C# (CSharp) Method

Parse() public static method

Convert the input string to Hash128.

public static Parse ( string hashString ) : Hash128
hashString string
return Hash128
        public static Hash128 Parse(string hashString)
        {
            Hash128 hash;
            INTERNAL_CALL_Parse(hashString, out hash);
            return hash;
        }