{"Could not find file C:\\myStuff\\VS.Net Programming\\C#.Net Programs\\MyProgram\\common run folder\\data.xml."}
Code:
XmlDocument dataXML = new XmlDocument();
string path = Application.StartupPath + @"\data.xml";
MessageBox.Show(path);
SkillsXML.Load(path);
MessageBox.Show shows it properly with only one backslash, but I get that error about the path not existing/cant find file and it shows double backslashes.
I know there are issues with strings and regular expressions in C#, but I thought the @ would remove that problem. Apparently Im not correct.
Anyone know a fix for this?