I want to store values as key,value,value pair. My data is of type
Key -> int & both values -> ulong,
How to initialize & fet
In C# 4, you'll have the Tuple type for your value, value pair.
There's an MSDN article describing the type and the design decisions behind it.