本文介绍了找不到任何解决方案的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Web应用程序中成功添加了引用,但是当我构建解决方案时出现错误(找到错误1命名空间'System'中不存在类型或命名空间名称'Linq'(您是否缺少程序集引用?)

Reference is added successfully in web application but when i build the solution the error(found Error 1 The type or namespace name 'Linq' does not exist in the namespace 'System'(are you missing an assembly reference?)

推荐答案

<add assembly="System.Data.Linq," version="3.5.0.0," culture="neutral," publickeytoken="B77A5C561934E089/">;</add>


using System.Linq;



到源代码。

添加引用是不够的。


to your source code.
Adding a reference is not sufficient.


这篇关于找不到任何解决方案的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-27 22:17
查看更多