我是 .net 世界的新手。所以我真的很高兴能得到一些帮助。
我尝试使用 xmlDictionaryReader
获取消息正文(在 wcf BeforeSendReply 中)。
我收到错误“找不到类型或命名空间 XmlDictionaryReader
。
我在我的程序中添加:
using System.Xml;
using System.Runtime.Serialization;
它仍然无法正常工作。你有什么主意吗?
最佳答案
添加对 System.Runtime.Serialization.dll
的引用:右键单击解决方案资源管理器中的项目 -> 添加引用。
并且可以肯定 - C# 区分大小写,所以它必须是 XmlDictionaryReader
并且看起来你从小写字母开始类名: xmlDictionaryReader
。
关于c# - 找不到类型或命名空间 XmlDictionaryReader,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15083236/