blah blah blah is here! blah blah » Close

2
votes
2 answers

List with KeyValuePair and duplicate keys?

cami
30

Hi all, if I create a list like the one as below: [code] List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>(); [/code] Can the same key have multiple values? as in to say, can ...

0
votes
1 answers

newbie question regarding reading from file

cami
30

Hi there, I am using C# and I want to read data from a text file and store it effectively using collections no datasets! I know the basics of how to read from file but for this particular file I can ignore the first 10 lines as they a ...

Feedback