找不到类型或名称空间名称(使用指令或程序集引用时丢失?)
本文关键字:引用 程序集 空间 类型 找不到 指令 | 更新日期: 2023-09-27 18:11:55
使用下面的代码:
using System.Web.Http;
class MyClass : IHttpActionResult
{ ... }
我得到错误:
类型或命名空间名称'IHttpActionResult'找不到(是)您缺少using指令或程序集引用吗?)
如图所示,IHttpActionResult接口在System.Web.Http
中定义。
怎么了?
修复了在Project> Reference Manager中指定的问题(与此严格相关):
Microsoft.Owin 2.0.2.0
Owin 1.0.0.0
System.Net.Http.Formatting 5.2.3.0
System.Web 4.0.0.0
System.Web.Http 5.2.3.0
System.Web.Http.Owin 5.2.3.0