在我的 c# windows 窗体中它有一个错误
找不到类型或命名空间名称“OperationContext”(您是否缺少 using 指令或程序集引用?)
谁能解释一下原因??
OperationContextSystem.ServiceModel
是库文件中包含的程序集中定义的类System.ServiceModel.dll
如果您尝试使用此类,则需要通过Project References添加对库的引用,然后添加
using System.ServiceModel;
在使用 OperationContext 的文件中
因为您没有添加用于访问此类的 dll
阅读http://msdn.microsoft.com/en-us/library/system.servicemodel.operationcontext.aspx
你必须添加 System.ServiceModel dll