我有一些VB.NET代码,我正在转换为C#。它使用XmlDictionaryWriter
和XmlDictionaryReaderQuotas,根据MSDN,它们都在System.Xml和程序集System.Runtime.Serialization
中。我添加了System.Runtime.Serialization
作为参考。它一直说不能找到它们。这是VB.NET代码:
Dim xmlreader As System.Xml.XmlDictionaryReader
Dim quotas As New System.Xml.XmlDictionaryReaderQuotas
xmlreader = JsonReaderWriterFactory.CreateJsonReader(result, quotas)
这是在VS2013 / .NET Framework 4中