S
Sami
Im new to c#
what's the easiest way to parse short xml files?
<html><head><title>Title of the
page</title><script></script></head><body>BODY</body></html>
and save it to an object for access later?
Class HtmlFile
{
public string Title
public string SciptType
public string SciptSrc
public string Body
}
XmlNodeReader seems very confusing
Sami
what's the easiest way to parse short xml files?
<html><head><title>Title of the
page</title><script></script></head><body>BODY</body></html>
and save it to an object for access later?
Class HtmlFile
{
public string Title
public string SciptType
public string SciptSrc
public string Body
}
XmlNodeReader seems very confusing
Sami