Search for alternative list <KeyValuePair <string, KeyValuePair <string, string >>>
2 answers
A better option would be to wrap your own Tuple class, similar to sending in .NET 4.0 .
Then you can have one:
List<Tuple<string,string,string>>
It's easy enough to write in .NET 2.0 - it's basically just a triple of values, instead of having 2 in KeyValuePair. However, there is no built-in equivalent for triplet values ββin .NET 2.0.
Edit:
, , -
1, /, :
Dictionary<string, List<KeyValuePair<string,string>>>
KeyValuePair . , ...
+10