Visual Studio 2015 年在 IF 语句上崩溃
Visual Studio 2015 crashes on an IF statement
[好像是个bug]
我在 Visual Studio 2015 年遇到了一个非常奇怪的行为。
每次我在控制器的方法中有一个 const 并尝试使用 IF 语句时,我的 VS 2015 就会崩溃。
public ActionResult About()
{
if() //<-crashes when I try to add this line
const string filename = @"c:\temp\test.txt";
ViewBag.Message = "Your application description page.";
return View();
}
有没有人也遇到过这个问题?
似乎是 Visual Studio 2015 预览版中的错误。
感谢评论
[好像是个bug]
我在 Visual Studio 2015 年遇到了一个非常奇怪的行为。 每次我在控制器的方法中有一个 const 并尝试使用 IF 语句时,我的 VS 2015 就会崩溃。
public ActionResult About()
{
if() //<-crashes when I try to add this line
const string filename = @"c:\temp\test.txt";
ViewBag.Message = "Your application description page.";
return View();
}
有没有人也遇到过这个问题?
似乎是 Visual Studio 2015 预览版中的错误。 感谢评论