Hello,
I was reading a C# explanation, with code, of reading an XML file and outputting it to a TreeView GUI in a form. Trying to translate it to C++ I haven't found a proper translation for a line in a recursive stop that says:
node.NodeType == XmlNodeType.Text || node.NodeType == XmlNodeType.CDATA
What is the proper VC++2005 version of this?
Thanks,
Barney
Loading
Barney SperlinPosted Mar 24, 2008, 6:06 PM
Thanks, that worked! I appreciate the direction,
Barney
AlanPosted Mar 24, 2008, 3:32 PM
Try:
node->NodeType == XmlNodeType::Text || node->NodeType == XmlNodeType::CDATA