Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么在我的 VS2005 中不能编译以下内容?
List<DbParameter> params = new List<DbParameter>();
params在 C#中的保留关键字中
params
使用不同的变量名称或为其添加前缀@
@
List<DbParameter> @params = new List<DbParameter>();
您的变量名称params是保留关键字,请更改它。