是否缺少对 Microsoft.CSharp.dll 和 System.Core.dll 的引用?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
错误提示 :
 
预定义的类型“Microsoft.CSharp.RuntimeBinder.Binder”未定义或未导入
 
  
 
是否缺少对 Microsoft.CSharp.dll 和 System.Core.dll 的引用
 
解决方案:
 
用记事本打开专案资料夹里的 *.csproj
 
找到<ItemGroup>区段
手动加入
<Reference Include="Microsoft.CSharp" />
 
<Reference Include="System.Core" />

  

是否缺少对 Microsoft.CSharp.dll 和 System.Core.dll 的引用?

上一篇:对象的内存结构(第五天培训内容)


下一篇:聊聊多态