N
needin4mation
In this code:
XmlTextWriter myWriter = new XmlTextWriter(@"C:\Xmldata\myWriter.xml",
null);
Why do they have the @ at symbol? Why not just the string?
XmlTextWriter myWriter = new XmlTextWriter(@"C:\Xmldata\myWriter.xml",
null);
Why do they have the @ at symbol? Why not just the string?