CS1026 :)预期| CS1002 :;预期CS1513:}预期

时间:2019-08-09 13:08:51

标签: c# asp.net asp.net-mvc

 private void Context_EndRequest(object sender, EventArgs e)
    {
        var context = ((HttpApplication)sender).Context;
        if (context.Items[typeof(IServiceScope)] is IServiceScope scope)
        {
            scope.Dispose();
        }
    }

当我尝试构建项目( Framework 4.7.2 )时,我得到

  

:错误CS1026:)预期:错误CS1002:;预期:错误CS1513:   }预期

在线

if (context.Items[typeof(IServiceScope)] is IServiceScope scope)

但是我看不到它在哪里引发错误。

1 个答案:

答案 0 :(得分:0)

它有助于通过Nuget更新“ Microsoft.Net.Compilers”

现在它可以正确构建了。