Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
if (!File.Exists(path))
{
using(var tw = new StreamWriter(path, true))
{
foreach (string line in savedDataLines)
{
tw.WriteLine(line);
}
tw.Close();
}
}
Pages: 1
[ Started around 1732569825.341 - Generated in 0.020 seconds, 10 queries executed - Memory usage: 1.2 MiB (Peak: 1.27 MiB) ]