using System;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] words = new string[6] { "stripos", "click", "substr", "save", "search", "sizeof" };
File.WriteAllLines("d:\\file.txt", words);
}
}
}
/*
run:
file.txt:
--------
stripos
click
substr
save
search
sizeof
*/