예제 #1
0
		private void OnDeserializing(StreamingContext context)
		{
			this.homeAddress = new Address();
			this.workAddress = new Address();
		}
예제 #2
0
		public Address(Address other)
		: base(other)
		{
		}
예제 #3
0
		public virtual void CopyFrom(Address other)
		{
			Street = other.Street;
			City = other.City;
			ZipCode = other.ZipCode;
		}