Bamboo.Prevalence.Examples.ToDoList.TaskSystem.GetAllTasks C# (CSharp) Метод

GetAllTasks() приватный Метод

private GetAllTasks ( ) : System.Collections.IList
Результат System.Collections.IList
		internal System.Collections.IList GetAllTasks()
		{
			// if we wanted our task system to
			// be more robust we could return
			// clones of the tasks objects instead of
			// returning the original references.
			// Right now I prefer
			// to trust the UI developers and
			// assume they won't be changing the
			// objects behind our back. 
			// If you have comments/suggestions
			// please drop me an email at
			// [email protected].
			Task[] tasks = new Task[_tasks.Count];
			_tasks.Values.CopyTo(tasks, 0);
			return tasks;
		}
	}