Encog.Util.Concurrency.TaskGroup.TaskGroup C# (CSharp) Метод

TaskGroup() публичный Метод

Create a task group with the specified id.
public TaskGroup ( int id ) : System.Threading
id int The ID of the task group.
Результат System.Threading
        public TaskGroup(int id)
        {
            _id = id;
            _totalTasks = 0;
        }