I am making a level editor for my game, and most of it is working except... When I try to save my file (XML) the file doesn't get created, and in the output box I get:
A first chance exception of type 'System.NullReferenceException'
The funny thing is that it only happens if the file doesn't exist, but it works correctly if I overwrite another file.
here is the code I'm using:
using (StreamWriter stream = new StreamWriter(filePath))
{
stream.Write(data);
stream.Close();
}
data is a string (this is not the problem because it works when I overwrite the file)
NullReferenceException? – ChrisF Jan 7 at 22:57using(for debug purposes only) and see if you get a more meaningful exception. – ChrisF Jan 7 at 22:59