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