public override object Clone() { var w = new While { CanRunDelegate = CanRunDelegate, Condition = Condition, IgnoreCanRun = IgnoreCanRun }; return w; }
public override object Clone() { While w = new While() { CanRunDelegate = this.CanRunDelegate, Condition = this.Condition, IgnoreCanRun = this.IgnoreCanRun }; return w; }
public override object Clone() { var w = new While { CanRunDelegate = this.CanRunDelegate, Condition = this.Condition, IgnoreCanRun = this.IgnoreCanRun }; return(w); }