如果我有一些带有 LINQ 扩展的东西,比如
// Declaration: Code Behind
Protected MyList As IList(Of Object)
// Code Before
MyList.First()
在后面的代码中,VS 总是抱怨类似'First' is not a member of 'System.Collections.Generic.IList {...}
. 一切正常,我只是想摆脱这些烦人的错误。
我试过了:
<%@ Import namespace="System.Linq" %>
在我的 ASPX 页面中,但它没有帮助。
我还尝试了以下方法,但都没有奏效:
- 在 web.config 的 pages-node 中添加命名空间
Imports System.Linq
在后面的代码中
PS:有趣的是,Resharper 不会将其标记为错误...