示例#1
0
文件: World.cs 项目: formist/LinkMe
 private static void Set(this LocationReference locationReference, PostalCode postalCode)
 {
     locationReference.Set(
         null,
         postalCode.Clone(),
         postalCode.GetCountrySubdivision().Clone(),
         postalCode.Locality.Clone());
 }
示例#2
0
文件: World.cs 项目: formist/LinkMe
 public static void Set(this LocationReference locationReference, string unstructuredLocation, CountrySubdivision countrySubdivision, PostalCode postalCode)
 {
     locationReference.Set(
         unstructuredLocation,
         postalCode.Clone(),
         countrySubdivision.Clone(),
         postalCode.Locality.Clone());
 }