Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hashtable ht = new Hashtable();
open the file
Foreach line read from the file:
string [] kv= line.split('=');
ht.Add(kv[0],kv[1]);
close the file.
Now you can iterate the Hashtable, modify it:
if (ht.Containkey("key1")
ht["key1"]="blabla";
When all changes are done the save the Hashtable:
open the output file
foreach (object o in ht.Keys)
{
string line = o.ToString() +"=" + ht[o].ToString() +"\r\n";
Write line to output
}
close the file.