Tagged Questions

0
votes
1answer
24 views

ASP.NET dictionary from session

I am saving all text boxes and dropdowns into an dictionary instance. Private Sub SaveAllControls(ByRef cInitialControl As Control) For Each ctrl As Control In cInitialControl.Controls …
0
votes
4answers
82 views

list? dictionary? array?

hi all i'm trying to come up with a very simple way to store a boolean value for each tabpage in a tabcontrol. each page has a textbox, and i would like to store a bool foreach page so if tabpage 1 …
1
vote
1answer
31 views

Type inheritance in Dictionary<ulong,BaseObject>

Hi to all. Here's the situation: There's a base class of type BaseObject ,from which all other classes are derived(i.e. Task : BaseObject). There's also a base class collection of type …
4
votes
8answers
223 views

Simple way to convert a string to a dictionary

What is the simplest way to convert a string of keyword=values to a dictionary, for example the following string: name="John Smith", age=34, height=173.2, location="US", avatar=":,=)" to the …
5
votes
7answers
175 views

How to avoid double check locking when adding items to a Dictionary<> object in .NET?

I have a question about improving the efficiency of my program. I have a Dictionary<string, Thingey> defined to hold named Thingeys. This is a web application that will create multiple named …
0
votes
5answers
66 views

how to fetch data from nested Dictionary in c#

I need to fetch data from nested Dictionary IN C#. My Dictionary is like this: static Dictionary<string, Dictionary<ulong, string>> allOffset = new Dictionary<string, …
3
votes
6answers
115 views

When would you use a List<KeyValuePair<T1, T2>> instead of a Dictionary<T1, T2>?

What is the difference between a List of KeyValuePair and a Dictionary for the same types? Is there an appropriate time to use one or the other?
0
votes
2answers
65 views

Easy way to convert a Dictionary<string, string> to xml and visa versa

Wondering if there is a fast way, maybe with linq?, to convert a Dictionary into a XML document. And a way to convert the xml back to a dictionary. XML can look like: <root> …
0
votes
1answer
32 views

Use a Plist dictionary for App settings

I want to be able to use a plist for settings Im implementing in my app. I want a dictionary "Settings" to hold my arrays, such as "Debug", "Option 1", Option 2", etc. How would I access "Debug"array …
1
vote
5answers
105 views

Make Dictionary From 2 List

trying to make dictionary with 2 list one being the key and one being the value but I'm having a problem. This is what I have so far: d={} for num in range(10): for nbr in range(len(key)): …
0
votes
3answers
41 views

how to fetch DictionaryEntry object from Hashtable?

I know the value of key for my Hashtable, from key how can I obtain the object of DictinaryEntry. I don't want to Iterate over Hashtable.
0
votes
3answers
49 views

can’t I use TryGetValue and assign the value to a property?

I'm trying to do myDic.TryGetValue("username", out user.Username); but its not working. is this not possible?
3
votes
4answers
150 views

Dictionary with two hash functions in C# ?

I've got a huge (>>10m) list of entries. Each entry offers two hash functions: Cheap: quickly computes hash, but its distribution is terrible (may put 99% of items in 1% of hash space) Expensive: …
0
votes
8answers
142 views

Tuples in Dicts

Is it possible in python to add a tuple as a value in a dictionary? And if it is,how can we add a new value, then? And how can we remove and change it?
-2
votes
2answers
26 views

how to fetch data from nested Dictionary in C# code

I need to fetch data from nested Dictionary IN C#. My Dictionary is like this: static Dictionary<string, Dictionary<ulong, string>> allOffset = new Dictionary<string, …

1 2 3 4 5 34 next
15 30 50 per page