0

在我的 c# windows 窗体中它有一个错误

找不到类型或命名空间名称“OperationContext”(您是否缺少 using 指令或程序集引用?)

谁能解释一下原因??

4

2 回答 2

1

OperationContextSystem.ServiceModel是库文件中包含的程序集中定义的类System.ServiceModel.dll

如果您尝试使用此类,则需要通过Project References添加对库的引用,然后添加

using System.ServiceModel;

在使用 OperationContext 的文件中

于 2013-03-02T12:50:45.493 回答
0

因为您没有添加用于访问此类的 dll

阅读http://msdn.microsoft.com/en-us/library/system.servicemodel.operationcontext.aspx

你必须添加 System.ServiceModel dll

于 2013-03-02T12:51:26.650 回答