Explain briefly the operation of each of the following methods and properties of interface IDictionary, which both Dictionary and Sorted- Dictionary implement:

a) Add
b) Keys
c) Values
d) ContainsKey

a) Adds a key/value pair into an IDictionary.
b) Gets an ICollection of the keys of an IDictionary.
c) Gets an ICollection of the values stored in an IDictionary.
d) Determines whether the specified key is in an IDictionary.

Computer Science & Information Technology

You might also like to view...

The ________ is not a Windows XP thread state.

a) valid state b) ready state c) standby state d) waiting state

Computer Science & Information Technology

In a SELECT statement, what immediately follows the SELECT keyword?

a) the name of a table b) the name of a column or * c) the name of a database d) the criteria that the row must meet

Computer Science & Information Technology