DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Snippet For Write Line To A File In C#.net
Snippet for write line to a file in c#.net
string[] myArray = new string[]
{
"one",
"two",
"three"
};
File.WriteAllLines("writefile.txt", myArray );





