示例#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));
 }