[]
Removes the first occurrence of a specific object from the IList.
public void Remove(object? value)
Type | Name | Description |
---|---|---|
object | value | The object to remove from the IList. |
Removes the first occurrence of a specific object from the ICollection<T>.
public bool Remove(T item)
Type | Name | Description |
---|---|---|
T | item | The object to remove from the ICollection<T>. |
Type | Description |
---|---|
bool | true if |