Remove 方法

Removes an object from the set.

命名空间:  Microsoft.SqlServer.Management.SqlParser.Metadata
程序集:  Microsoft.SqlServer.Management.SqlParser(在 Microsoft.SqlServer.Management.SqlParser.dll 中)

语法

声明
Function Remove ( _
    item As T _
) As Boolean
用法
Dim instance As IMutableTriggerEventSet
Dim item As T
Dim returnValue As Boolean

returnValue = instance.Remove(item)
bool Remove(
    T item
)
bool Remove(
    T item
)
abstract Remove : 
        item:'T -> bool 
function Remove(
    item : T
) : boolean

参数

  • item
    类型:T
    The object to remove from the set. This value cannot be a null reference.

返回值

类型:System. . :: . .Boolean
true if the item is successfully removed. false if the item is not successfully removed, or if the item is not found in the set.