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.
このメソッドを使用するコードを.NET3.5にバックポートする必要がありますが、Reflectorからは、独自のC#実装を提供する正しい方法が何であるかがわかりません。
何か助けはありますか?
このメソッドは、XmlCharType.binという名前の埋め込みリソースを使用します。これは、Reflectorで確認できます。これは、CharPropertiesポインターを初期化するためにSystem.Xml.XmlCharType.get_Instance()によって使用されます。同じリソースが3.5にも存在するので、同じように使用できます。
または、3.5未満のアプローチを取ります。
WhitespaceChars = new char[] { ' ', '\t', '\n', '\r' };