IHListTRemove Method (Int32)Hazelcast .Net Client Class Library
Removes the first occurrence of the specified element from this list, if it is present (optional operation). If this list does not contain the element, it is unchanged. More formally, removes the element with the lowest index i such that (o==null ? get(i)==null : o.equals(get(i))) (if such an element exists). Returns true if this list contained the specified element (or equivalently, if this list changed as a result of the call).

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.1
Syntax

T Remove(
	int index
)

Parameters

index
Type: SystemInt32
element to be removed from this list, if present

Return Value

Type: T
true if this list contained the specified element
See Also

Reference