当前位置: 首页>>代码示例>>C#>>正文


C# Action.Execute方法代码示例

本文整理汇总了C#中System.Action.Execute方法的典型用法代码示例。如果您正苦于以下问题:C# Action.Execute方法的具体用法?C# Action.Execute怎么用?C# Action.Execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Action的用法示例。


在下文中一共展示了Action.Execute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Execute

        private void Execute(Action action)
        {
            Stopwatch timer = Stopwatch.StartNew();

            System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;
            try
            {
                SetStatus("{0}...", action.DescriptivePhrase);
                using (new ScopedUndoContext(this, action.KeyName))
                {
                    action.Execute();
                }
                SetStatus("{0} completed in {1} seconds", action.DescriptivePhrase, timer.Elapsed.TotalSeconds);
            }
            catch (Exception ex)
            {
                Error(ex);
                SetStatus("Error {0}: {1}", action.DescriptivePhrase, ex.Message);
            }
            finally
            {
                timer.Stop();
                System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default;
            }
        }
开发者ID:mecurioJ,项目名称:sqlformat,代码行数:25,代码来源:AddIn.cs

示例2: UsePower

        public Action UsePower(Power power, VillageMember initiator, Actor target)
        {
            if (target != null) {
                Log.Debug(this.Name + " uses power " + power.GetType().Name + " on " + target.Name);
            }
            else {
                Log.Debug(this.Name + " uses power " + power.GetType().Name);
            }

            if (target is VillageMember) {
                if (((VillageMember)target).State == MemberState.Dead) {
                    throw new TargetIsDeadException(target.Name + " is dead.");
                }
            }

            Action action = new Action(power, this, initiator, target);
            try {
                action.Prepare();
                village.RaiseActionPrepared(action);
                if (action.Power.Instant) {
                    action.Who.RaisePreActionSource(action);
                    if (action.Target != null) {
                        action.Target.RaisePreActionTarget(action);
                    }
                    if (action.Cancel) {
                        Log.Debug("Action cancelled.");
                    } else {
                        Log.Debug("Executing action...");
                        action.Execute();

                        action.Who.RaisePostActionSource(action);
                        if (action.Target != null) {
                            action.Target.RaisePostActionTarget(action);
                        }
                        if (action.Result != null) {
                            action.Result.Apply();
                        }
                    }
                }
                else {
                    Log.Debug("Queueing " + power.GetType().FullName + " on " + target.Name);
                    village.Phase.QueueAction(action);
                    action.ResultMessage = String.Format(power.QueuedMessage, target.Name);
                }
                village.RaiseActionExecuted(action);
                return action;
            }
            catch (Action.ActionException ex) {
                action.ResultMessage = ex.Message;
                action.Cancel = true;
                return action;
            }
        }
开发者ID:JamesBondski,项目名称:mafiabot,代码行数:53,代码来源:Actor.cs

示例3: TestLockFreeColl2

        public void TestLockFreeColl2()
        {
            Action<ICollection<int>, int, int> collAdd = (coll, a, b) => Enumerable.Range(a,b).Reverse().ForEach(i =>  coll.Add(i));

            ConcurrentHashSet<int> testColl = new ConcurrentHashSet<int>();

            var jobs = new Action[] {
             () => { collAdd(testColl, 0, 500000);},
             () => { collAdd(testColl, 500000, 500000);},
             () => { collAdd(testColl, 1000000, 500000);},
             () => { collAdd(testColl, 1500000, 500000);},
             () => { collAdd(testColl, 2000000, 500000);},
             () => { collAdd(testColl, 2500000, 500000);},
             () => { collAdd(testColl, 3000000, 500000);},
             () => { collAdd(testColl, 3500000, 500000);}
            };

            //var jobs = new Action[] {
            // () => { collAdd(testColl, 0, 1000000);},
            // () => { collAdd(testColl, 1000000, 1000000);},
            // () => { collAdd(testColl, 2000000, 1000000);},
            // () => { collAdd(testColl, 3000000, 1000000);}
            //};

            //var jobs = new Action[] {
            // () => { collAdd(testColl, 0, 2000000);},
            // () => { collAdd(testColl, 2000000, 2000000);}
            //};

            //var jobs = new Action[] {
            // () => { collAdd(testColl, 0, 4000000);}
            //};

            TimeSpan serial = jobs.Execute();
        }
开发者ID:mbmccormick,项目名称:Ximura,代码行数:35,代码来源:Test_Collections.cs


注:本文中的System.Action.Execute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。