本文整理汇总了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]);
}
}
示例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();
}
}
}
示例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();
}
}
}