[]
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 System.Collections.Generic.ICollection<>.
public bool Remove(T item)
| Type | Name | Description |
|---|---|---|
| T | item | The object to remove from the System.Collections.Generic.ICollection<>. |
| Type | Description |
|---|---|
| bool | true if |