Method ContainsKey
ContainsKey(Char[], Int32, Int32)
true
if the length
chars of text
starting at offset
are in the Keys
Declaration
public virtual bool ContainsKey(char[] text, int offset, int length)
Parameters
Type |
Name |
Description |
System.Char[] |
text |
|
System.Int32 |
offset |
|
System.Int32 |
length |
|
Returns
Type |
Description |
System.Boolean |
|
ContainsKey(Char[])
true
if the entire Keys is the same as the
text
char[] being passed in;
otherwise false
.
Declaration
public virtual bool ContainsKey(char[] text)
Parameters
Type |
Name |
Description |
System.Char[] |
text |
|
Returns
Type |
Description |
System.Boolean |
|
ContainsKey(String)
true
if the text
System.String is in the Keys;
otherwise false
Declaration
public virtual bool ContainsKey(string text)
Parameters
Type |
Name |
Description |
System.String |
text |
|
Returns
Type |
Description |
System.Boolean |
|
Implements
System.Collections.Generic.IDictionary<TKey, TValue>.ContainsKey(TKey)
ContainsKey(ICharSequence)
Declaration
public virtual bool ContainsKey(ICharSequence text)
Parameters
Returns
Type |
Description |
System.Boolean |
|
ContainsKey(Object)
true
if the o
System.Object.ToString() is in the Keys;
otherwise false
Declaration
public virtual bool ContainsKey(object o)
Parameters
Type |
Name |
Description |
System.Object |
o |
|
Returns
Type |
Description |
System.Boolean |
|