DynamicType.Remove Method (String)
Removes an item with a specified key string from the collection.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Function Remove ( _
key As String _
) As Boolean
'Usage
Dim instance As DynamicType
Dim key As String
Dim returnValue As Boolean
returnValue = instance.Remove(key)
public bool Remove(
string key
)
Parameters
key
Type: System.StringThe key of the item to be removed.
Return Value
Type: System.Boolean
true if it succeeds; otherwise, false.
Implements
IDictionary<TKey, TValue>.Remove(TKey)