예제 #1
0
        public void AddNewJSONRoot()
        {
            CJSONRoot temp = new CJSONRoot();

            JSONRoot.Add(temp);
            CurrentRootIndex = JSONRoot.Count - 1;
            JSONRoot[CurrentRootIndex].JSONData = new List <CJSONData>();
        }
예제 #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);
        }