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

问题描述 投票:0回答:2
 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)

但我不知道它在哪里抛出错误。

c# asp.net asp.net-mvc
2个回答
1
投票

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

现在构建没有错误。


0
投票

谢谢 Dario M. 和梅森 - 由于我缺乏声誉点,我无法对您的评论进行投票,但您的评论帮助我解决了我的问题。谢谢!

© www.soinside.com 2019 - 2024. All rights reserved.