UnityEngine.Hash128.Parse C# (CSharp) 메소드

Parse() 공개 정적인 메소드

Convert the input string to Hash128.

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