Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将一些使用此方法的代码反向移植到 .NET 3.5,并且从 Reflector 我似乎无法辨别为它提供我自己的 C# 实现的正确方法。
有什么帮助吗?
该方法使用名为 XmlCharType.bin 的嵌入式资源,您可以使用 Reflector 查看它。System.Xml.XmlCharType.get_Instance() 使用它来初始化 charProperties 指针。3.5 中也存在相同的资源,您可以以相同的方式使用它。
或者采用较小的 3.5 方法:
WhitespaceChars = new char[] { ' ', '\t', '\n', '\r' };