hi i have trouble understand system.io .
i read through the msdn, but ....still dun undertsnd how to use
i know it can use to write and read from a text file using stream writer or reader
the read code is like this but i cant understand
StreamReader reader=new StreamReader(winDir + "\\system.ini");
try
{
do
{
addListItem(reader.ReadLine());
}
while(reader.Peek() != -1);
}
catch
{
addListItem("File is empty");}
finally
{
reader.Close();
}