Tagged Questions

System.Collections.IDictionary and System.Collections.Generic.IDictionary<TKey, TValue> interfaces in the BCL (Base Class Library) of the .NET framework represent a collection of key-value pairs.

learn more… | top users | synonyms

6
votes
1answer
186 views

Why doesn't the C# Dictionary implement all of IDictionary?

I wanted to create a Dictionary-like object and thought the correct way would be to implement the IDictionary<K,V> interface, and use composition to include the underlying dictionary. I began ...
6
votes
4answers
2k views

C# — Need an IDictionary implementation that will allow a null key

Basically, I want something like this: Dictionary<object, string> dict = new Dictionary<object, string>(); dict.Add(null, "Nothing"); dict.Add(1, "One"); Are there any built into the ...
5
votes
1answer
2k views

Create a Dictionary in xaml?

Pseudo example: <Window> <Window.Tag> <x:Dictionary KeyType="{x:Type sys:String}" ValueType="{x:Type sys:Int32}"> <sys:DictionaryEntry Entry="{sys:DictionaryEntry ...
5
votes
6answers
5k views

Convert IDictionary<string, string> keys to lowercase (C#)

I've got a Method that gets a IDictionary as a parameter. Now I want to provide a method that retrieves the value from this dictionary, but it should be case-invariant. So my solution to this right ...
4
votes
8answers
392 views

Is there a limit to entries in a Dictionary<>?

I have about 3000 different files I need to organize, and retrieve at different times during the game. I created my own struct of variables. I was thinking about creating a "Dictionary " at the ...
4
votes
2answers
153 views

Why does not IDictionary (non-generic) inherit from IEnumerable<DictionaryEntry>?

IDictionary<TKey, TValue> inherits from IEnumerable<KeyValuePair<TKey, TValue>>, but IDictionary for some reason doesn't inherit from IEnumerable<DictionaryEntry>. I wonder ...
4
votes
2answers
2k views

Getting values of a generic IDictionary using reflection

I have an instance that implements IDictionary<T, K>, I don't know T and K at compiletime, and want to get all elements from it. I don't want to use IEnumerable for some reason, which would be ...
3
votes
1answer
223 views

Code Contracts: Ensures Unproven & Requires Unproven

I'm not sure if I'm doing something wrong here or if it needs to be fixed... I have a custom Dictionary wrapper class and here is a snippet of the code that is necessary. public int Count { get ...
3
votes
3answers
190 views

When SortedDictionary is enumerated does it return KeyValuePairs in expected order?

When I have SortedDictionary<TK, TV> in .NET and I want to enumerate it as ICollection<KeyValuePair<TK, TV>> does it enumerate in expected order? That is KeyValuePair<TK, TV> ...
3
votes
4answers
286 views

IEnumerable<T> to IDictionary<U, IEnumerable<T>>

What's the most efficient way to convert an IEnumerable<T> to an IDictionary<U, IEnumerable<T>> Where U is, for example a Guid, for which the information is held in a property of T. ...
3
votes
3answers
204 views

CLR Debugger (DbgCLR) and dictionaries

Dictionary values look ugly in CLR Debugger. Is there a way to make them appear in more friendly way? I want to see just keys and values instead of all these recursively nested properties. UPD: The ...
3
votes
2answers
257 views

Convert List of KeyValuePair into IDictionary “C#”

My seenario, how to convert List<KeyValuePair<string, string>> into IDictionary<string, string>
3
votes
2answers
742 views

IXmlSerializable Dictionary problem

I was trying to create a generic Dictionary that implements IXmlSerializable (credit to Charles Feduke). Here is my trial: Sub Main() Dim z As New SerializableDictionary(Of String, String) ...
3
votes
2answers
445 views

How can I return a Dictionary from F# to C# without having to include FSharp.Core?

I'm trying to return a IDictionary<int,int> (created with dict tuplist) from F# to C#, but it says that I must include a reference to FSharp.Core because of ...
3
votes
3answers
360 views

Is there a better data structure than Dictionary if the values are objects and a property of those objects are the keys?

I have a Dictionary<int, object> where the int is a property of obj. Is there a better data structure for this? I feel like using a property as the key is redundant. This Dictionary<int, ...
3
votes
5answers
1k views

Purpose of IDictionary interface

What is the need of IDictionary interface. How can IDictionary interface be initialized. After all it is just an interface. The following code snippet is from msdn. I could not understand it. ...
2
votes
1answer
24 views

Howto call method extending IDictionary (reflection)?

I have extended IDictionary like this: public static T ToClass<T>(this IDictionary<string, string> source) where T : class, new() { T someObject = new T(); foreach ...
2
votes
2answers
38 views

IDictionary w/ Null Key - MSDN Typo or something else going on?

IDictionary<TKey, TValue> ArgumentNullException - key is null. Then, in the remarks... Implementations can vary in whether they allow key to be null. So, I have to wonder... is this ...
2
votes
3answers
119 views

Dictionary<StudentType, List<Student>> to IDictionary<StudentType, IList<Student>>?

Please consider the following code: class Student { } enum StudentType { } static void foo(IDictionary<StudentType, IList<Student>> students) { } static void Main(string[] args) { ...
2
votes
3answers
960 views

How do I alter the contents of IDictionary using LINQ (C# 3.0)

How do I alter the contents of an IDictionary using C# 3.0 (Linq, Linq extensions) ? var enumerable = new int [] { 1, 2}; var dictionary = enumerable.ToDictionary(a=>a,a=>0); //some code //now ...
1
vote
3answers
111 views

ASP.NET MVC: How to pass Dictionary<string, string> from controller to jquery for use?

As I am quite green for ASP.NET MVC so maybe my question is very simple for many experienced users. I am now implementing a web-based platform and I am trying to pass some data in Dictionary from ...
1
vote
2answers
46 views

IDictionary AddAndReturn Extension For Fluent Interface

What nice about JQuery which is a great JavaScript library is to be able to get the element you are working on as return value. Here is an example of what I am referring : $(function() { ...
1
vote
2answers
187 views

Best performance on a String Dictionary in C#

I am designing a C# class that contains a string hierarchy, where each string has 0 or 1 parents. My inclination is to implement this with a Dictionary<string,string> where the key is the ...
1
vote
2answers
80 views

Linq Convert to Custom Dictionary?

.NET 4, I have public class Humi { public int huKey { get; set; } public string huVal { get; set; } } And in another class is this code in a method: IEnumerable<Humi> someHumi = new ...
1
vote
0answers
283 views

Fluent NHibernate HasManyToMany() IDictionary<> Composite ID problem

I'm using Fluent NHibernate 1.1.1.694 which uses a slightly different syntax than FNH1.0, especially when it comes to dictionary mapping. In my model, I have Employees, Addresses and AddressTypes ...
1
vote
1answer
101 views

How do I enumerate a static dictionary contained in a static class from asp.net ( aspx) page

I don't understand how to loop over a static dictionary contained in a static class from my aspx page. I have this for the static class public static class ErrorCode { public static ...
1
vote
1answer
379 views

Binding to indexed property with String key

Say I wanna bind to dictionary that TKey is string with XAML: <Label DataContext="{MyDictionary}" Content="{Binding Item("OK")}" /> Doesn't work. How should I do it? I am talking about the ...
1
vote
3answers
576 views

COM Interop IDictionary - How to retrieve a value in C#?

using: VS2008, C# I have a COM dll I need to use in a .NET project. In there I have a class with a method that returns an IDictionary object. IDictionary is defined in the COM dll so I'm not sure if ...
1
vote
4answers
1k views

Removing Items From IDictionary With Recursion

Anybody have a slicker way to do this? Seems like it should be easier than this, but I'm having a mental block. Basically I need to remove items from an dictionary and recurse into the values of the ...
0
votes
2answers
47 views

Convert Dictionary to XML using C#

I have my XML File as follows: <states> <state name ="Alaska"> <Location Name="loc1"> <Address>testadd1</Address> <DateNTime>d1</DateNTime> ...
0
votes
1answer
55 views

XML and IDictionary in C#

My XML file is as follows, <state name ="Alaska"> <Location Name="loc1"> <Address>xyz</Address> <DateNTime>Saturday, Oct 2, 8pm</DateNTime> </Location> ...
0
votes
1answer
50 views

Using IDictionary with Json?

how to get the friends list (below) into and out from a iDictionary? Example {   "data": [     {       "name": "John Smith",       "id": "111"     },     {       "name": "Alice Smith",       ...
0
votes
0answers
28 views

How to relate IDictionary keys and values to a DataTable rows and columns

I am trying to create a DataSet and two DataTables in that DataSet in C# (using Visual Studio). Let's talk about one of them for the time being. The name of the (one of the) DataTable should be ...
0
votes
4answers
51 views

How do I get a delegate returned from a iDictionary?

I am trying to use a dictionary to reference a delegate but I get an error when I try and retrieve the delegate pointer. For more context I am being given a string to use to lookup a value in C ...
0
votes
1answer
64 views

Wrapping multiple Lists in IDictionary

I have a class ObjectBatch as follows: [Serializable] class ObjectBatch : IDictionary<string, IObjModel> { List<Tuple<string, IObjModel>> ModelATypes; ...
0
votes
0answers
52 views

Bind IDictionary<string, object> on datagrid control in WPF

i would like bind idictionary on datagrid view. Here is property which I bind on datagrid control. public IDictionary<string, Bill> CellPhoneBills { get { return ...
0
votes
1answer
272 views

Serializing dictionary in XNA 4.0

I want to serialize a tree in XNA 4.0, where each node has the children node in a member dictionary indexed by int as such: [Serializable] public class Node { private Dictionary<int, Node> ...
0
votes
1answer
90 views

IDictionary<int, MyClass> Custom Collection

Can anyone look at this and tell me what I'm doing wrong? I am having issue implementing the GetEnumerator methods, I have figured out a way to have the IDE create all of the methods so I can learn ...
0
votes
4answers
591 views

C# - Dictionary<key, value> to List<T>

I want to map my Dictionary<int, string> to a List<Customer> where Customer has two properties Id and Name. Now I want to map my integer Key of the dictionary to the ...
0
votes
2answers
325 views

Passing IDictionary object to Web service

In my asmx file, I have [WebMethod] [ScriptMethod] public void Method(IDictionary<string, CustomClass> objectOfCustomClass) { //do stuff } ...
0
votes
2answers
64 views

Dictionary object syntax?

I'm having trouble figuring out the syntax for a JScript .NET dictionary object. I have tried private var myDictionary: Dictionary<string><string>; but the compiler complains that it's ...
0
votes
0answers
77 views

Debugger stops when debugging an object that extends the IDictionary interface (attached code)

I have an object that extends the IDictionary interface namely a "SafeDictionary". When I pause the debugger and point the mouse at the object to see its contents the debugger stops. Any idea how to ...
0
votes
2answers
774 views

ASP.Net MVC 2 - ModelBinding and Dictionary<int, int>

In my interface I have a list of text boxes, something like this : http://screencast.com/t/YjIxNjUyNmU The number of textboxes is unknown as each of them is associated with a Template. In my page, ...
0
votes
1answer
197 views

Fluent nHibernate and mapping IDictionary<DaysOfWeek,IDictionay<int, decimal>> how to?

I have problem with making mapping of classes with propert of type Dictionary and value in it of type Dictionary too, like this: public class Class1 { public virtual int Id { get; set; } ...
0
votes
2answers
613 views

XML Serialization of nested classes having Dictionary

I am trying to XML-serialize a nested class. Both classes have dictionaries which I am serializing using this link. Serialization works fine but the nested class doesn't get de-serialized. Can you ...
0
votes
2answers
196 views

<Map> = IDictionary

I have 3 entities: class User {id,name...} class UserUrl {id,user_id,url,url_type_id} class UrlType {id,name} My mapping: <class name="User" table="Users" lazy="false">   <id ...
0
votes
2answers
1k views

IDictionary, Dictionary

I have: IDictionary<string, IDictionary<string, IList<long>>> OldDic1; (just for illustration purposes, it is instantiated and has values - somewhere else) Why can I do this: ? ...
0
votes
1answer
845 views

NHibernate 2.0: Cfg.Configuration.SetProperties Issue with IDictionary

I have a problem with: NHibernate.Cfg.Configuration.SetProperties() Not accepting the IDictionary: NHibernateConfigHandler I get the messages: Error 30 The best overloaded method match for ...
0
votes
1answer
175 views

Error when calling the service in async mode

Stackoverflow is definetly the fastest forum so after posting this question in the WCF forum I decided to come here. I have a wcf service which returns a dictionary (IDictionary) and that works just ...