I got thousands of XML files following all the same schema/structure.I implemented IXmlSerializable and thus am reading the elements and attributes myself.My problem is that these files each use a different phony namespace. These files come from an other source so I cannot change that Also, there are too many of those namespaces for me to just build an array of the possible namespaces and pass it along to the xmlserializer.Right now, if I don't specify a namespace, it throws a [xmlns:ns0="http://tempuri.org/abcd.xsd" was not expected] error.I would like to be able to tell the serializer to simply ignore the namespace when deserializing my object and just fire ReadXML. Or just be able to tell it to accept any "http://tempuri.org/" namespace.Is that possible?I would like to avoid modifying the files as much as possible.Thank you!