Sorting of data (item) inside the text file.
-
guys, i dont know how to sort the data(item)inside the text file alphabetically line by line? - i read my book and read help but no information regarding that matter.. can you give me the codes for that so i'm able to easily understand. Hope ur help and response... tnx a lot.. regards, JayR
-
guys, i dont know how to sort the data(item)inside the text file alphabetically line by line? - i read my book and read help but no information regarding that matter.. can you give me the codes for that so i'm able to easily understand. Hope ur help and response... tnx a lot.. regards, JayR
private void MenuItem_SampleSortFile_Click(object sender, System.EventArgs e)
{
ArrayList list = new ArrayList();
list.Add("I don't know how to sort the data");
list.Add("inside the text file line by line");
list.Add("I read my book and read help");
list.Add("but no information regarding that matter");
list.Add("can you give me the codes");
list.Add("so I am able to easily understand");
list.Add("Hope your help and response");list.Sort(); System.IO.StreamWriter writer = new System.IO.StreamWriter("c:\\\\test.txt"); foreach( string sline in list) writer.WriteLine( sline); writer.Flush(); writer.Close();
}
"What classes are you using ? You shouldn't call stuff if you have no idea what it does"
Christian Graus in the C# forumled mike
-
private void MenuItem_SampleSortFile_Click(object sender, System.EventArgs e)
{
ArrayList list = new ArrayList();
list.Add("I don't know how to sort the data");
list.Add("inside the text file line by line");
list.Add("I read my book and read help");
list.Add("but no information regarding that matter");
list.Add("can you give me the codes");
list.Add("so I am able to easily understand");
list.Add("Hope your help and response");list.Sort(); System.IO.StreamWriter writer = new System.IO.StreamWriter("c:\\\\test.txt"); foreach( string sline in list) writer.WriteLine( sline); writer.Flush(); writer.Close();
}
"What classes are you using ? You shouldn't call stuff if you have no idea what it does"
Christian Graus in the C# forumled mike
Hi led mike... It works! It helps a lot.. Thank you so much... regards, JayR