When testing/debugging an ASP.NET MVC application, it's common to submit a form and then check all of the name/value pairs to make sure
- All of the expected keys are present
- All of the expected keys have the expected values
Debugging in Visual Studio is great for checking if a single variable (or even a simple object) contains the expected value(s), and as far as a FormCollection, it's pretty easy to check the presence of the keys. However, checking the key/value pairings in a FormCollection is a huge hassle. Is there a simple way to get Visual Studio to list the keys and their values side-by-side for a quick check?
Just a quick custom check
You can then place your mouse on
formValues
to check the key-value. Clicking the magnifier would reveal the Key-Values