Share via


WeakCollection<T>.Remove Method

Microsoft internal use only. Removes an item from the underlying collection, if it exists.

Namespace:  Microsoft.VisualStudio.PlatformUI
Assembly:  Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)

Syntax

'Declaration
Public Function Remove ( _
    item As T _
) As Boolean
public bool Remove(
    T item
)
public:
bool Remove(
    T item
)
member Remove : 
        item:'T -> bool
public function Remove(
    item : T
) : boolean

Parameters

  • item
    Type: T

    The item to remove.

Return Value

Type: Boolean
Returns true if the item was found and removed; otherwise returns false.

Remarks

This is 0(n), where n is the number of WeakReferences currently in the list.

.NET Framework Security

See Also

Reference

WeakCollection<T> Class

Microsoft.VisualStudio.PlatformUI Namespace