CSharpUtils.Forms.TimerTaskQueue.ExecuteOne C# (CSharp) Method

ExecuteOne() protected method

protected ExecuteOne ( ) : void
return void
		protected void ExecuteOne()
		{
			var TaskDelegate = Tasks.Dequeue();
			TaskDelegate();
			if (Tasks.Count == 0)
			{
				Timer.Stop();
			}
		}