You only have ItemX property getters, this is correct, but I found a way to create confusion with empty values ββfirst and fill them with afterwords.
If you do something like this:
Dictionary <string, Tuple<string, string>> mydic = new Dictionary<string,Tuple<string,string>>(); Tuple<string, string> tplTemp = new Tuple<string, string>("", ""); mydic.TryGetValue("akey", out tplTemp);
In tplTemp, passed as an out parameter, values ββfrom 2 elements from the collection will be indicated. So thereβs a way to do this in case it can help someone.
Greg Feb 13 '14 at 10:15 2014-02-13 10:15
source share