Beispiel #1
0
 public virtual MyImmutableClassBuilder Set(MyImmutableClass other)
 {
     SetX(other.X);
     SetY(other.Y);
     ClearChildren();
     AddToChildren(other.Children);
     return(this);
 }
		public virtual MyImmutableClassBuilder Set(MyImmutableClass other)
		{
			SetX(other.X);
			SetY(other.Y);
			ClearChildren();
			AddToChildren(other.Children);
			return this;
		}
 public MyImmutableClass(MyImmutableClass other)
     : base(other)
 {
 }
Beispiel #4
0
		public MyImmutableClass(MyImmutableClass other)
		: base(other)
		{
		}