Removes the first occurrence of a specific object from the ISpread<(Of <(<'T>)>)>.

Namespace: VVVV.PluginInterfaces.V2
Assembly: VVVV.PluginInterfaces (in VVVV.PluginInterfaces.dll) Version: 2.0.4694.10872

Syntax

C#
public static bool Remove<T>(
	this ISpread<T> spread,
	T item
)

Parameters

spread
Type: VVVV.PluginInterfaces.V2..::..ISpread<(Of <(<'T>)>)>
The ISpread<(Of <(<'T>)>)> to remove the object from.
item
Type: T
The object to remove.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:VVVV.PluginInterfaces.V2.SpreadExtensions.Remove``1(VVVV.PluginInterfaces.V2.ISpread{``0},``0)"]

Return Value

true if item was successfully removed from the ISpread<(Of <(<'T>)>)>; otherwise, false. This method also returns false if item is not found in the original ISpread<(Of <(<'T>)>)>.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ISpread<(Of <(<'T>)>)>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

Remarks

This is operation has a runtime of O(n).

See Also