いくつかのXMLファイルを処理する.NET Coreでアプリケーションを作成しています。私は次のコードを持っている.NET 4.6では.NETのSystem.XML同等の機能
:
var document = new XmlDocument(xml);
var node = document.SelectSingleNode("/SOMEPATH");
var value = node.GetValue("//SOMEOTHERPATH");
どうやらSelectSingleNode
とGetValue
はもうるSystem.XMLには存在しません。
.NETコアの同等の機能は何ですか?
http://stackoverflow.com/questions/35089399/selectsinglenode-is-giving-compilation-error-in-dnx-core-5-0 –