コード例 #1
0
 public static string GetKey(JSONNode json, int index)
 {
     try
     {
         JSONClass jsc = (JSONClass)json;
         return(jsc.GetKey(index));
     }
     catch
     {
     }
     return("");
 }