Ejemplo n.º 1
0
        public void AddNewJSONRoot()
        {
            CJSONRoot temp = new CJSONRoot();

            JSONRoot.Add(temp);
            CurrentRootIndex = JSONRoot.Count - 1;
            JSONRoot[CurrentRootIndex].JSONData = new List <CJSONData>();
        }
Ejemplo n.º 2
0
        public void AddJSONDataRow(string aKey, string aValue)
        {
            CJSONRoot temp = new CJSONRoot();

            JSONRoot.Add(temp);
            CurrentRootIndex = JSONRoot.Count - 1;
            JSONRoot[CurrentRootIndex].JSONData = new List <CJSONData>();
            AddNewJSONItem(aKey, aValue);
        }