How to iterate a C# dictionary
The following snippet shows an easy way to iterate a C# dictionary:
Dictionary<int, string> dictionary = new Dictionary<int, string>();
dictionary.Add(1, "Cat");
dictionary.Add(2, [...]
The following snippet shows an easy way to iterate a C# dictionary:
Dictionary<int, string> dictionary = new Dictionary<int, string>();
dictionary.Add(1, "Cat");
dictionary.Add(2, [...]
Every now and then somebody says to me:
I just added my assembly to the gac and now I can’t debug my code anymore
The fact is that debugging gac assemblies is quite easy when you know how to do it.
The problem with debugging gac assemblies is that you can’t add the pdb file to [...]
Usually my WebTests are coded WebTests, but sometimes the plain WebTest can do the job a lot faster.
My biggest problem working with plain WebTests, is that all the input to my forms are the recorded values. In some of the text fields I need value variations every run.
To solve this problem I created a [...]