Esempio n. 1
0
        public static string Encode <T>(T e)
        {
            JSONImplementation j = new JSONImplementation(16);

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

            return(j.encode(e));
        }