↧
Answer by Richard Nienaber for Non-unicode XML representation
Okay I tested it with the following code: string xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?><xml><value>受</value></xml>"; XmlWriterSettings settings = new...
View ArticleAnswer by Blair Conrad for Non-unicode XML representation
If I understand the question, then yes. You just need a ; after the 27544:<?xml version="1.0" encoding="Windows-1252"?><xml><value>殘</value></xml>Or are you...
View ArticleNon-unicode XML representation
I have xml where some of the element values are unicode characters. Is it possible to represent this in an ANSI encoding?E.g.<?xml version="1.0"...
View Article