This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 417
012a2533 a0ed 8ac1 3e47 a1477bc526f3
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Removes the first occurrence of a specific object from the list.
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public bool Remove(
string item
)
VB
Public Function Remove (
item As String
) As Boolean
C++
public:
virtual bool Remove(
String^ item
) sealed
F#
abstract Remove :
item : string -> bool
override Remove :
item : string -> bool
- String
- The object to remove from the list. The value cannot be null.
Boolean
True if the item is successfully removed; otherwise, false. This method also returns false the item was not found in the list.
ICollection(T).Remove(T)