Beispiel #1
0
        public static string Encode <T>(T e)
        {
            JSONImplementation j = new JSONImplementation(16);

            return(j.encode(e));
        }
Beispiel #2
0
        public static string EncodeArray(IArray e)
        {
            JSONImplementation j = new JSONImplementation(0);

            return(j.encode(e));
        }