I have an XML file which is in version 1.1. Upon googling I understood the .Net doesn't support XML version 1.1.
I am trying to load a stream using XDocument as below
var xmlDoc = XDocument.Load(stream);
It throws error.
Is there any other way to handle this version of XML ?
I also try to look at XmlPrime. Does XmlPrime support version 1.1
- Alan -