private void OnDeserializing(StreamingContext context) { this.homeAddress = new Address(); this.workAddress = new Address(); }
public Address(Address other) : base(other) { }
public virtual void CopyFrom(Address other) { Street = other.Street; City = other.City; ZipCode = other.ZipCode; }