1
vote
1answer
15 views
Varying amount of dictionaries in a DataTable
Earlier I asked a question about merging a known number of dictionaries into 1 single DataTable: http://stackoverflow.com/questions/1831209/dictionaries-in-datatable
Darin provided me with a …
1
vote
3answers
53 views
Dictionaries in DataTable
Say I have 3 Dictionary<string, string> objects. All 3 have the same key like so:
Dic1 Dic2 Dic3
K V K V K V
A s A z A i
B d B e B u
C a C r C o
D w D t D …
0
votes
1answer
27 views
Convert a dictionary<string,string> to xml
I want to convert a dictionary<string,string> to this xml:
<root>
<key>value</key>
<key2>value2</key2>
</root>
Can this be done using some fancy …
0
votes
1answer
36 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
93 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 …
0
votes
1answer
15 views
Custom dictionary object ?
I want to extend the VB.NET dictionary object to not bitch about an item being already in the associative array.
This is what i want to do:
Public Class BetterDictionary
Inherits …
1
vote
1answer
32 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
9answers
242 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 …
-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, …
0
votes
5answers
69 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, …
0
votes
1answer
33 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 …
0
votes
2answers
69 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
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?
0
votes
3answers
36 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 can do:
…
5
votes
7answers
189 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 …
