TaskCollectionAdd(ValueTupleString, String, String, String) Method
Add one or more tasks using a simple tuple approach.
Namespace: ProjectTaskAssembly: ProjectTask (in ProjectTask.dll) Version: 25.2814.3647
public List<TaskItem> Add(
params (string , string , string , string )[] entries
)
Public Function Add (
ParamArray entries As ( As String, As String, As String, As String)()
) As List(Of TaskItem)
No code example is currently available or this language may not be supported.
- entries ValueTupleString, String, String, String
-
One or more displayName, description, itemType, itemStatus tuples.
ListTaskItem
Reference to a list of items that have been added to the collection.
To use this method, call it similarly to:
project.Tasks.Add(
("Maiden Project",
"Creating a new project-level task.",
"Project", "InProgress"),
("Kick-Off Task",
"Creating a new task.",
"Task", "TODO"),