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