TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Marco
NA
59
0
XmlReader
Sep 21 2009 7:20 PM
Hello,
I'm parsing a XML file in this way that seems fine:
try {
XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreWhitespace = true;
XmlReader reader = XmlReader.Create(new XmlTextReader(filename), settings);
while (reader.Read()) {
switch (reader.NodeType) {
}
} catch (XmlException e) {
Console.WriteLine("error occured: " + e.Message);
}
The problem: I have a node like this:
<node name="List<char>">
The parser says no th the '<' and '>' inside the attribute;
How can afford it? (I need a way to don't get any error)
thanks
Reply
Answers (
2
)
C# combobox multicolumn dropdown - select return one column value
How can I disable the Task Manager?