I want to store values as key,value,value pair. My data is of type
Key -> int & both values -> ulong,
How to initialize & fet
You can declare a class that stores both values and then use an ordinary dictionary. For example:
class Values { ulong Value1 {get;set;} ulong Value2 {get;set;} } var theDictionary=new Dictionary; theDictionary.Add(1, new Values {Value1=2, Value2=3});