コード例 #1
0
ファイル: While.cs プロジェクト: Asphodan/Alphabuddy
 public override object Clone()
 {
     var w = new While
                 {
                     CanRunDelegate = CanRunDelegate,
                     Condition = Condition,
                     IgnoreCanRun = IgnoreCanRun
                 };
     return w;
 }
コード例 #2
0
ファイル: While.cs プロジェクト: naacra/wowhbbotcracked
 public override object Clone()
 {
     While w = new While()
     {
         CanRunDelegate = this.CanRunDelegate,
         Condition = this.Condition,
         IgnoreCanRun = this.IgnoreCanRun
     };
     return w;
 }
コード例 #3
0
ファイル: While.cs プロジェクト: swypemaster/saintsorsinners
        public override object Clone()
        {
            var w = new While
            {
                CanRunDelegate = this.CanRunDelegate,
                Condition      = this.Condition,
                IgnoreCanRun   = this.IgnoreCanRun
            };

            return(w);
        }