vs编译错误
Vs报错
unexpected character 报错
原因:
一般是程序集引用导致问题。
参考地址:
https://stackoverflow.com/questions/31577120/why-do-i-get-an-cs1056-unexpected-character-on-this-code
解决办法:
找到文件夹
C:\Users\JANKIE1122\AppData\Local\Temp
将
.NETFramework,Version=v4.5.2.AssemblyAttributes.cs
文件删除就可以了。
================================================================
CSC报错
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 CS1061 'IDbConnection' does not contain a definition for 'QueryFirstOrDefault' and no extension method 'QueryFirstOrDefault' accepting a first argument of type 'IDbConnection' could be found (are you missing a using directive or an assembly reference?) OrderSystemV2.Common D:\Common\Data\ConnectionBase.cs 668 活动
原因:
Dapper版本号不正确
解决办法:
重新添加正确的版本号就可以了
搜索
复制
标签:unexpected,错误,版本号,编译,vs,报错 From: https://www.cnblogs.com/jankie1122/p/11124465.html