[This is preliminary documentation and is subject to change.]
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# |
|---|
[ObsoleteAttribute("Use type-safe overload instead")] [EditorBrowsableAttribute(EditorBrowsableState.Never)] public override sealed void Remove( Object value ) |
| Visual Basic |
|---|
<ObsoleteAttribute("Use type-safe overload instead")> _ <EditorBrowsableAttribute(EditorBrowsableState.Never)> _ Public Overrides NotOverridable Sub Remove ( _ value As Object _ ) |
| Visual C++ |
|---|
[ObsoleteAttribute(L"Use type-safe overload instead")] [EditorBrowsableAttribute(EditorBrowsableState::Never)] public: virtual void Remove( Object^ value ) override sealed |
| F# |
|---|
[<ObsoleteAttribute("Use type-safe overload instead")>] [<EditorBrowsableAttribute(EditorBrowsableState.Never)>] abstract Remove : value:Object -> unit [<ObsoleteAttribute("Use type-safe overload instead")>] [<EditorBrowsableAttribute(EditorBrowsableState.Never)>] override Remove : value:Object -> unit |
| JScript |
|---|
public override final function Remove( value : Object ) |
Parameters
- value
- Type: System..::..Object
The Object to remove from the IList
Remarks
Provided for compatibility with CollectionEditor
Exceptions
| Exception | Condition |
|---|---|
| System..::..InvalidOperationException | Locked is True |