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


C# TList.Clear方法代码示例

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


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

示例1: Main

        internal static void Main()
        {
            //// adding element + AutoGrow()
            TList<int> somelist = new TList<int>(2);
            somelist.Add(1);
            somelist.Add(2);
            somelist.Add(3);

            //// removing element by index
            somelist.RemoveAt(1);

            //// inserting element at given position
            somelist.InsertAt(0, 0);

            //// accessing element by index (I feel so sleepy that I dont't see 2)
            for (int i = 0; i < somelist.Count; i++)
            {
                Console.WriteLine(somelist[i]);
            }

            //// finding element by its value
            Console.WriteLine(somelist.Contains(3));

            ////ToString override
            Console.WriteLine(somelist.ToString());

            //// Min and max value
            int minValue = somelist.Min();
            int maxValue = somelist.Max();

            Console.WriteLine("MinValue = {0}\nMaxValue = {1}\n", minValue, maxValue);

            ////Clear list - List is empty & nothing is printed
            somelist.Clear();
            for (int i = 0; i < somelist.Count; i++)
            {
                Console.WriteLine(somelist[i]);
            }
        }
开发者ID:rusekov,项目名称:HomeWorksOOP,代码行数:39,代码来源:TestList_Main.cs

示例2: ProcessQueue

        /// <summary>
        /// Processes the queue
        /// </summary>
        public void ProcessQueue()
        {
            try
            {
                // exit if shutting down
                if (this.WantExit)
                    return;

                // get all the items from the queue, then reset counter
                ItemList = WorkItemQ.DequeueAll();
                m_ItemsInQueue = 0;

                // set time
                CurrentTime = DateTime.Now.Ticks;

                // loop through the items and process them
                Parallel.ForEach(ItemList, x =>
                {
                    try
                    {
                        // exit if wanting exit
                        if (this.WantExit)
                            return;

                        // decide which queue the items go to
                        if (new TimeSpan(x.ExecutionTime.Ticks - CurrentTime).TotalMilliseconds <= MyScheduleEngine.FastTimeMs)
                            FastList.Add(x);
                        else
                            ReAddList.Add(x);
                    }

                    catch (Exception excep)
                    {
                        MyScheduleEngine.AddExceptionToQueue(excep);
                    }
                });
            }

            catch (ThreadAbortException)
            {
            }

            catch (Exception excep)
            {
                MyScheduleEngine.AddExceptionToQueue(excep);
            }

            finally
            {
                // add the list of items back to the queue
                if (!this.WantExit)
                {
                    if (ReAddList.Count > 0)
                        WorkItemQ.EnqueueAll(ReAddList);
                    if (FastList.Count > 0)
                        MyScheduleEngine.FastSched.AddItemsToQueue(FastList.ToList());
                    ReAddList.Clear();
                    FastList.Clear();
                    ItemList.Clear();
                }
            }
        }
开发者ID:piercep,项目名称:scheduler,代码行数:65,代码来源:SlowScheduler.cs

示例3: ProcessQueue

        /// <summary>
        /// Processes the queue
        /// </summary>
        public void ProcessQueue()
        {
            try
            {
                // exit if shutting down
                if (this.WantExit)
                    return;

                // get all the items from the queue, then reset counter
                ItemList = WorkItemQ.DequeueAll();
                m_ItemsInQueue = 0;

                // set time
                CurrentTime = DateTime.Now.Ticks;

                // loop through the items and process them
                Parallel.ForEach(ItemList, x =>
                    {
                        try
                        {
                            // if not time yet, add back to the queue
                            if (x.ExecutionTime.Ticks > CurrentTime)
                            {
                                // add the item to the list, then skip this iteration
                                ReAddList.Add(x);
                                return;
                            }

                            // process the item
                            Task.Factory.StartNew(x.Execute);
                            WorkItemsExecuted++;
                        }

                        catch (Exception excep)
                        {
                            MyScheduleEngine.AddExceptionToQueue(excep);
                        }
                    });
            }

            catch (ThreadAbortException)
            {
            }

            catch (Exception excep)
            {
                MyScheduleEngine.AddExceptionToQueue(excep);
            }

            finally
            {
                // add the list of items back to the queue
                if (!this.WantExit)
                {
                    if (ReAddList.Count > 0)
                        WorkItemQ.EnqueueAll(ReAddList);
                    ReAddList.Clear();
                    ItemList.Clear();
                }
            }
        }
开发者ID:piercep,项目名称:scheduler,代码行数:64,代码来源:FastScheduler.cs


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