diff --git a/CodeXCavator/MainWindow.xaml.cs b/CodeXCavator/MainWindow.xaml.cs index b3267d0..d4a983f 100755 --- a/CodeXCavator/MainWindow.xaml.cs +++ b/CodeXCavator/MainWindow.xaml.cs @@ -28,6 +28,7 @@ using System.IO.IsolatedStorage; using System.IO; using CodeXCavator.Engine.Interfaces; +using System.Globalization; //This file has been significantly modified by Ben van der Merwe // @@ -149,7 +150,7 @@ void Window_Closing(object sender, EventArgs e) using (StreamWriter writer = new StreamWriter(stream)) { // Write restore bounds value to file - writer.WriteLine(this.RestoreBounds.ToString()); + writer.WriteLine(this.RestoreBounds.ToString(CultureInfo.InvariantCulture)); } } catch { }