Remove 메서드 (T)
Removes the first occurrence of a specific object from the collection.
네임스페이스: Microsoft.SqlServer.Management.SqlParser.Metadata
어셈블리: Microsoft.SqlServer.Management.SqlParser(Microsoft.SqlServer.Management.SqlParser.dll)
구문
‘선언
Function Remove ( _
item As T _
) As Boolean
‘사용 방법
Dim instance As IMutableMetadataCollection
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. This value cannot be nullNothingnullptrunitnull 참조(Visual Basic에서는 Nothing).
반환 값
유형: System. . :: . .Boolean
true if the object is successfully removed; false if the object was not found or if it was not successfully removed from the collection.