MVC ViewBag不能使用在工程文件中添加引用

在工程文件中

 <ItemGroup>

    // 。。。

 </ItemGroup>

添加引用

<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />

如:

<ItemGroup>
    //...
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Core" />
</ItemGroup>
原文地址:https://www.cnblogs.com/fjptwwf/p/5133068.html