Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
234 views

Which mechanism is a better way to extend Dictionary to deal with missing keys and why?

There is a minor annoyance I find myself with a lot - I have a Dictionary<TKey, TValue> that contains values that may or may not be there. So normal behaviour would be to use the indexer, like ...
4
votes
4answers
144 views

When KeyNotFoundException is thrown, how do I see which key wasn't found?

A System.Collections.Generic.Dictionary is throwing KeyNotFoundException, but I can't see which key is supposedly missing. How do I determine this?
4
votes
3answers
2k views

Best way to handle a KeyNotFoundException

I am using a dictionary to perform lookups for a program I am working on. I run a bunch of keys through the dictionary, and I expect some keys to not have a value. I catch the KeyNotFoundException ...
2
votes
3answers
208 views

KeyNotFound Exception in Dictionary(of T)

I'm about ready to bang my head against the wall I have a class called Map which has a dictionary called tiles. class Map { public Dictionary<Location, Tile> tiles = new ...
2
votes
2answers
569 views

KeyNotFound Exception when calling Html.ValidationSummary() dynamically through helper method

I have a Helper Method in my View which renders the whole form dynamically. Now i want to add a support for Client Validation as available in Asp.Net MVC RC 2. Following is the code i use to render ...
2
votes
7answers
1k views

C# dictionary<> missing key

When i do val = dict["nonexistent key"] i get System.Collections.Generic.KeyNotFoundException Is there a way i have my dictionary call a member function with the key as a param to generate a value? ...
1
vote
3answers
416 views

Getting KeyNotFoundException when using key previously retrieved from key collection?

I've got the following code where for some reason I'm getting a KeyNotFoundException even though I'm using a key that I had retrived a couple of lines above. Does anyone know of a situation where ...
0
votes
1answer
165 views

Umbraco installation problem. Can not install starter kit. The key was not present in the dictionary

This is a problem I get when trying to install Umbraco. I know that Umbraco has its own forum, but they have just moved it to another url, and I can not seem to be able to post a question there. So I ...
0
votes
0answers
168 views

How to add files to archive using SevenZipSharp

First of all what I want to do: I have a list of files I'd like to add to the same archive. The folder structure to this files should be included to the archive. The problem I have is that I can not ...
0
votes
4answers
1k views

Having trouble getting NUnit's Assert.Throws to work properly

I could have sworn that I've used NUnit's Assert.Throws to determine whether or not a particular exception gets thrown from a method, but my memory has failed me before. I read this post here on SO, ...
0
votes
1answer
100 views

KeyNotFoundException, but not when debugging

I've been building an extensions library, and I've utilised a great extension method found at http://www.extensionmethod.net for inclusion. In my unit test (using NUnit 1.5.2), I've come across an ...
0
votes
2answers
767 views

C# exception: Key is not present in the dictionary

I got a little problem. Sometimes, when I try to call the following code, the remove methods throw an exception with the message "the key is not present in the dictionary". private ...