-1
votes
2answers
18 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<st …
1
vote
5answers
50 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<st …
0
votes
1answer
22 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 …
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?
5
votes
7answers
147 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 cre …
0
votes
2answers
58 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&g …
0
votes
3answers
35 views
Trying to convert xml to a dictionary
My xml looks like:
<root>
<blah1>some text</blah1>
<someother>blah aasdf</someother>
</root>
I want to convert this to a dictionary
So I …
9
votes
4answers
1k views
How to get the FxCop custom dictionary to work?
How is it possible to get the FxCop custom dictionary to work correctly?
I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same f …
1
vote
5answers
103 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 ran …
0
votes
3answers
40 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
8answers
139 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?
3
votes
4answers
148 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 …
0
votes
3answers
82 views
how to concatenate two dictionaries to create a new one in Python?
Say I have three dicts d1={1:2,3:4}, d2={5:6,7:9}, d3={10:8,13:22}, how do I create a new d4 that combines these three dictionaries. i.e d4={1:2,3:4,5:6,7:9,10:8,13:22}?
3
votes
5answers
98 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?
3
votes
3answers
60 views
Is there a dictionary like collection that can use a property of its value as the key?
istead of using Dictionary I want some type of collection class that can use a property of the value as the key, is there something like this?
