Remove the item from the linked list. If the item is in the list more than once it removes the first one with the value

Namespace: RCLibrary
Assembly: RCLibrary (in RCLibrary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool Remove(
	T value
)
Visual Basic
Public Function Remove ( _
	value As T _
) As Boolean
Visual C++
public:
bool Remove(
	T value
)

Parameters

value
Type: T
The value to find in the list to be removed

Return Value

true if found to remove, false otherwise

See Also