protected BaseImmutableAddress(BaseImmutableAddress other)
		{
			this.Street = other.Street;
			if (other.City == null)
				this.City = null;
			else
				this.City = string.Copy(other.City);
			this.ZipCode = other.ZipCode;
		}
Beispiel #2
0
 protected BaseImmutableAddress(BaseImmutableAddress other)
 {
     this.Street = other.Street;
     if (other.City == null)
     {
         this.City = null;
     }
     else
     {
         this.City = string.Copy(other.City);
     }
     this.ZipCode = other.ZipCode;
 }