Share via


SfcDictionaryCollection<T, K, ParentT>.Remove Method

Do not reference this member directly in your code. It supports the SQL Server infrastructure.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

'Declaration
Public Overrides Function Remove ( _
    obj As T _
) As Boolean
'Usage
Dim instance As SfcDictionaryCollection
Dim obj As T
Dim returnValue As Boolean

returnValue = instance.Remove(obj)
public override bool Remove(
    T obj
)
public:
virtual bool Remove(
    T obj
) override
abstract Remove : 
        obj:'T -> bool 
override Remove : 
        obj:'T -> bool 
public override function Remove(
    obj : T
) : boolean

Parameters

  • obj
    Type: T
    The existing object.

Return Value

Type: System.Boolean
true if the object is removed; otherwise, false.

Implements

ICollection<T>.Remove(T)