예제 #1
0
 public static PlistElementArray GetOrCreateArray(this PlistElementDict dict, string key)
 {
     return(dict.GetOrCreate <PlistElementArray>(key));
 }
예제 #2
0
 public static PlistElementDict GetOrCreateDict(this PlistElementDict dict, string key)
 {
     return(dict.GetOrCreate <PlistElementDict>(key));
 }