In my project there is an XML document. I saved it in a folder named "XML". How can I get the path of the XML file, so that I have to parse the XML document?

I tried using the code below, but it doesn't work. What is the solution?

String str="Myproject;component/XML/myxml.xml "
link|improve this question

40% accept rate
feedback

1 Answer

Ensure that the Build Action is set to Content and you should be able to reference it directly without needing to qualify with the assemblyname/namespace.

This works for me:

var str = "XML/myxml.xml";

var xdoc = XDocument.Load(str);
link|improve this answer
I tried this code but doesnt works.I got the output as /XML/myxml.xml – Sujiz Aug 2 '11 at 10:42
@Sujiz what do you mean you got that as the output? – Matt Lacey Aug 2 '11 at 10:48
@Sujiz try removing the starting forward slash. – Matt Lacey Aug 2 '11 at 10:49
is there any method to convert var to string? – Sujiz Aug 2 '11 at 11:46
@Sujiz the compiler resolves var's at compile time. You can set the type explicitly if you wish. In the above example str is a string and xdoc an XDocument. – Matt Lacey Aug 2 '11 at 12:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.