FileStream fs = File.Create(@ "c:\hot.xls ");
StreamWriter sw = new StreamWriter(fs);
sw.Write( "hello world ");
fs.Close();
FileStream fs = File.Create(@ "c:\hot.xls ");
StreamWriter sw = new StreamWriter(fs);
sw.Write( "hello world ");
fs.Close();