2.2.3.10.2 Hashtable from int to DaylightTime Using Default Comparer

The syntax below follows the .NET Remoting Description Notation, as specified in [MS-NRTP], section 2.2.5.

Hashtable is a Class, the Library name of which is "mscorlib". It is used to contain a collection of key-value pairs. Keys are Int32 values, and Values are DaylightTime values (see section 2.2.3.10.3).

 namespace System.Collections
 {
   class Hashtable
   {
     Single                                LoadFactor;
     Int32                                 Version;
     System.Collections.IComparer          Comparer;
     System.Collections.IHashCodeProvider  HashCodeProvider;
     Int32                                 HashSize;
     System.Object[]                       Keys;
     System.Object[]                       Values;
   }
 }

LoadFactor: The maximum ratio of elements to buckets.

Version: The version number of the HashTable contents.

Comparer: Reserved. The value of this field MUST be NullObject (as specified in [MS-NRTP], section 3.1.1).

HashCodeProvider: Reserved. The value of this field MUST be NullObject (as specified in [MS-NRTP], section 3.1.1).

HashSize: The number of buckets in the hash table.

Keys: An array of keys. All keys MUST be of type Int32. A key represents a year associated with a DaylightTime value (see section 2.2.3.10.3).

Values: An array of values. All values MUST be of the type DaylightTime (see section 2.2.3.10.3). The length of the Values array MUST be the same as length of Keys array.