how can i acessthe xml file in c#?
C#
5
Posts
4
Posters
0
Views
1
Watching
-
Use XmlDocument to load it - and then bind the text to the textbox.
Deja View - the feeling that you've seen this post before.
-
Use XmlDocument to load it - and then bind the text to the textbox.
Deja View - the feeling that you've seen this post before.
-
Google "reading text file in C#", this is basic IO. It's a text file, look at the
StreamReader
, (or even theXmlTextReader
if you really need it, though it doesn't sound like you do).
Try code model generation tools at BoneSoft.com.