Пример #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));
 }