AssetBundleGraph.Json.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

Parses the string json into a value
public static Deserialize ( string json ) : object
json string A JSON string.
리턴 object
        public static object Deserialize(string json)
        {
            // save the string for debug information
            if (json == null) {
                return null;
            }

            return Parser.Parse(json);
        }