can i parse xml file including : or / using c#

Can I parse a file including \[code\]:\[/code\] or \[code\]/\[/code\] using C# ?This error appears:\[quote\] An unhandled exception of type 'System..Exception' occurred in System..dll\[/quote\]Additional information: The \[code\]/\[/code\] character, hexadecimal value \[code\]0x2F\[/code\], can be included in a name.When I parse this file:\[code\]<profile> <mini> <Album URI="http://dbpedia.org/ontology/Album"> <predicate queryType="getObjects">http://dbpedia.org/ontology/abstract</predicate> <predicate queryType="getObjects">http://dbpedia.org/ontology/artist</predicate> <predicate queryType="getObjects">http://dbpedia.org/ontology/genre</predicate> <predicate queryType="getObjects">http://dbpedia.org/ontology/producer</predicate> <predicate queryType="getObjects">http://dbpedia.org/ontology/releaseDate</predicate> </Album> </mini></profile>\[/code\]
 
Back
Top