Beispiel #1
0
        public LuaJSONObject GetJSONObject(String name)
        {
            LuaJSONObject lso = new LuaJSONObject();

            lso.jso = (JObject)jso[name];
            return(lso);
        }
Beispiel #2
0
        public LuaJSONObject GetJSONObject(Int32 index)
        {
            LuaJSONObject lso = new LuaJSONObject();

            lso.jso = (JObject)jsa[index];
            return(lso);
        }
Beispiel #3
0
        public static LuaJSONObject CreateJSOFromString(String str)
        {
            LuaJSONObject lso = new LuaJSONObject();

            lso.jso = (JObject)JsonConvert.DeserializeObject(str);
            return(lso);
        }