[似乎是一个错误]
我在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();
}
还有人遇到过这个问题吗?
答案 0 :(得分:2)
似乎是Visual Studio 2015 Preview中的错误。 感谢您的评论