easy file writing
For some reason text tiles are not written? This is very simple but it is not working.
StreamWriter outStream = null;
string outFileName = "mydata.txt";
try
{
outStream = new StreamWriter(outFileName);
log.Info("Got to outStream");
}
catch (Exception e)
{
log.Info("NOOOO");
MessageBox.Show(e.ToString());
}
Would anyone have any idea why?
Cheers,
Gareth.

