Example #1
0
 public object Clone()
 {
     var obj = new StateObject(this);
     return obj;
 }
Example #2
0
 private StateObject(StateObject stateObject)
 {
     this.Type = stateObject.Type;
     this.Value = stateObject.Value;
 }