When we upgraded MVC beta to MVC RC1 the development webserver that visual studio has suddenly crashed at some point in the application. After some searching I narrowed the bug to this simple line:
if (!helper.ViewData.ContainsKey("SomeString"))
SomeString is at that moment present in the viewData so the if statement should return false
when that line is executed the webserver crashes, no exeption in the program. We see a crash that seems to come from the method ContainsKey. Has someone experienced the same problem? should we roll back our insallation to MVC beta?