Skip to content

Instantly share code, notes, and snippets.

@mariusz
Created January 19, 2009 19:20
Show Gist options
  • Save mariusz/49118 to your computer and use it in GitHub Desktop.
Save mariusz/49118 to your computer and use it in GitHub Desktop.
private void goButton_Click(object sender, EventArgs e)
{
if (!CheckErrors())
{
return;
}
string data = GetProjectData();
System.IO.StreamWriter writer = new System.IO.StreamWriter("input.xml", false, Encoding.UTF8);
writer.Write(data);
writer.Close();
Process.Start("Solver.exe");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment