how to initialize dictionary as (key,value,value) pair in C#

后端 未结 9 1127
悲&欢浪女
悲&欢浪女 2020-12-31 11:37

I want to store values as key,value,value pair. My data is of type

Key -> int & both values -> ulong,

How to initialize & fet

9条回答
  •  旧巷少年郎
    2020-12-31 12:16

    Look at Wintellect.PowerCollections Namespace they have special structure Pair<(Of ) and collections to work with it or you'll need to code your own Pair type.

提交回复
热议问题