Insert

TaskCollection.Insert method

This is the stub implementation of IList’s Insert method, that only throws NotSupportedException

public void Insert(int index, Task item)
ParameterTypeDescription
indexInt32The index to insert at.
itemTaskThe item to insert.

See Also