[This is preliminary documentation and is subject to change.]
When overriden in derived class removes the first occurrence of a specific object from the IList.
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)] public abstract void Remove( Object value ) |
| Visual Basic |
|---|
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _ Public MustOverride Sub Remove ( _ value As Object _ ) |
| Visual C++ |
|---|
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)] public: virtual void Remove( Object^ value ) abstract |
| F# |
|---|
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>] abstract Remove : value:Object -> unit |
| JScript |
|---|
public abstract function Remove( value : Object ) |
Parameters
- value
- Type: System..::..Object
The Object to remove from the IList
Implements
IList..::..Remove(Object)
Remarks
Provided for compatibility with CollectionEditor
Exceptions
| Exception | Condition |
|---|---|
| System..::..InvalidOperationException | Locked is True |