0
votes
XML Serialize boolean as 0 and 1
No, not using the default System.Xml.XmlSerializer: you'd need to change the data type to an int to achieve that, or muck around with providing your own serialization code (possible, but not much f …
1
vote
Is it valid to have a ‘choice’ of ‘group’ elements when defining an XML Schema (XSD)
Whether this is valid depends on the content of the groups: if they're 'sequence' or 'choice' model groups, it's perfectly legal; 'all' model groups are more problematic and generally not allowed i …
0
votes
How can I delete a specific node within a XML file by using vbscript
Given the following XML:
<root>
<anything foo="bar">value1</anything>
<anything foo="qux">value2</anything>
</root>
...you …
2
votes
What is the best way to parse an XML boolean attribute (in .NET)?
Using CBool instead of Boolean.Parse should do the trick: although you'll have to embed it in a try/catch block (which wouldn't be required when using B …
3
votes
