vote up 2 vote down star

Is there a way to test if an object is a dictionary?

In a method I'm trying to get a value from a selected item in a list box. In some circumstances, the list box might be bound to a dictionary, but this isn't known at compile time.

I would like to do something similar to this:

if (listBox.ItemsSource is Dictionary<??>)
{
    KeyValuePair<??> pair = (KeyValuePair<??>)listBox.SelectedItem;
    object value = pair.Value;
}

Is there a way to do this dynamically at runtime using reflection? I know it's possible to use reflection with generic types and determine the key/value parameters, but I'm not sure if there's a way to do the rest after those values are retrieved.

flag

57% accept rate

6 Answers

vote up 3 vote down check

It should be something like the following. I wrote this in the answer box so the syntax may not be exactly right, but I've made it Wiki editable so anybody can fix up.

if (listBox.ItemsSource.IsGenericType && 
    typeof(IDictionary<,>).IsAssignableFrom(listBox.ItemsSource.GetGenericTypeDefinition()))
{
    var method = typeof(KeyValuePair<,>).GetProperty("Value").GetGetMethod();
    var item = method.Invoke(listBox.SelectedItem, null);
}
link|flag
it'd probably perform better using the boxed value than using reflection. – Darren Kopp Sep 23 '08 at 19:33
I'm not sure what you mean? You can't just box a KeyValuePair<TKey,TValue> to extract the value from it. – Greg Beech Sep 23 '08 at 19:38
Your solution worked. I changed the if statement to go ahead and just test "is IDictionary" (the typeof part of yours didn't work for some reason). I also changed "typeof(KeyValuePair<,>)" to "listBox.SelectedItem" – Bob Sep 23 '08 at 20:04
This solution utilizes <,> which is invalid syntax, you would need to supply the real types being used for it to work. ie IDictionary<string, object>. – Guvante Sep 24 '08 at 1:00
vote up 7 vote down

Check to see if it implements IDictionary.

See the definition of System.Collections.IDictionary to see what that gives you.

if (listBox.ItemsSource is IDictionary)
{
    DictionaryEntry pair = (DictionaryEntry)listBox.SelectedItem;
    object value = pair.Value;
}

EDIT: Alternative when I realized KeyValuePair's aren't castable to DictionaryEntry

if (listBox.DataSource is IDictionary)
{
     listBox.ValueMember = "Value";
     object value = listBox.SelectedValue;
     listBox.ValueMember = ""; //If you need it to generally be empty.
}

This solution uses reflection, but in this case you don't have to do the grunt work, ListBox does it for you. Also if you generally have dictionaries as data sources you may be able to avoid reseting ValueMember all of the time.

link|flag
Um, you know IDictionary<TKey,TValue> doesn't actually implement the IDictionary interface? So this won't work for generic dictionaries. Look at msdn.microsoft.com/en-us/library/… – Greg Beech Sep 23 '08 at 19:32
Also, even if it was a Dictionary<TKey,TValue> which does implement IDictionary, then it implements IEnumerable<KeyValuePair<TKey,TValue>> so I'd expect the case to DictionaryEntry to fail. – Greg Beech Sep 23 '08 at 19:39
Of course I meant "cast to DictionaryEntry" above. – Greg Beech Sep 23 '08 at 19:44
Casting to DictionaryEntry does fail. Still haven't figured out the solution yet. – Bob Sep 23 '08 at 19:50
Well to correct Greg Beech, I just pulled up Dictionary<>, and it does in fact implement IDictionary, even if IDictionary<> does not. Forgot that although using an indexing method to get a DictionaryEntry would work, I can't cast the SelectedItem to it. Will fix if I find non-reflection solution. – Guvante Sep 24 '08 at 0:58
vote up 0 vote down

You could be a little more generic and ask instead if it implements IDictionary. Then the KeyValue collection will contina plain Objects.

link|flag
Be careful with your terminology, referring to the non-generic versions as generic is probably confusing to some people (I know I always have to correct myself :P) – Guvante Sep 23 '08 at 19:26
vote up 1 vote down

you can check to see if it implements IDictionary. You'll just have to enumerate over using the DictionaryEntry class.

link|flag
vote up 0 vote down

I think you could do:

if(listBox.ItemSource.GetType().Equals(new Dictionary().GetType()))
{
   //do something
}
link|flag
vote up 0 vote down

I believe a warning is at place.

When you're testing if an object 'is a' something this or that, you're reimplementing (part of) the type system. The first 'is a' is often swiftly followed by a second one, and soon your code is full of type checks, which ought to be very well handled by the type system - at least in an object oriented design.

Of course, I know nothing of the context of the question. I do know a 2000 line file in our own codebase that handles 50 different object to String conversions... :(

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.