Example #1
0
 public override object Clone()
 {
     var w = new While
                 {
                     CanRunDelegate = CanRunDelegate,
                     Condition = Condition,
                     IgnoreCanRun = IgnoreCanRun
                 };
     return w;
 }
Example #2
0
 public override object Clone()
 {
     While w = new While()
     {
         CanRunDelegate = this.CanRunDelegate,
         Condition = this.Condition,
         IgnoreCanRun = this.IgnoreCanRun
     };
     return w;
 }
Example #3
0
        public override object Clone()
        {
            var w = new While
            {
                CanRunDelegate = this.CanRunDelegate,
                Condition      = this.Condition,
                IgnoreCanRun   = this.IgnoreCanRun
            };

            return(w);
        }