use of Hashtable and how it realtest to serialization
| As all of us know hashtable object contains item in key value pairs and keys of these hash table can be used as index. So from this we can search value with there corresponding key. In DOTNET this hashtable exists in hashtable class
The data populated from the Hashtable can be saved using Serialization process. Serialization is a process where the object gets converted into a linear sequence of Bytes for storage or transmission to another location. Thi |
|
| s process can be done by using BinaryFormater class which serializes Hashtable object to file stream. | |
