| SqlDictionaryTValueContains Method |
Determines whether the
ICollectionT contains a specific value.
Namespace: SandcastleBuilder.ComponentsAssembly: SandcastleBuilder.Components (in SandcastleBuilder.Components.dll) Version: 2014.11.22.0
Syntax public bool Contains(
KeyValuePair<string, TValue> item
)
Public Function Contains (
item As KeyValuePair(Of String, TValue)
) As Boolean
public:
virtual bool Contains(
KeyValuePair<String^, TValue> item
) sealed
abstract Contains :
item : KeyValuePair<string, 'TValue> -> bool
override Contains :
item : KeyValuePair<string, 'TValue> -> bool
Parameters
- item
- Type: System.Collections.GenericKeyValuePairString, TValue
The object to locate in the ICollectionT.
Return Value
Type:
Booleantrue if
item is found in the
ICollectionT; otherwise, false.
Implements
ICollectionTContains(T)See Also