What's the best way of using a pair (triple, etc) of values as one value in C#?

前端 未结 16 2569
时光说笑
时光说笑 2021-02-07 03:00

That is, I\'d like to have a tuple of values.

The use case on my mind:

Dictionary, object>

or

<         


        
16条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-07 03:32

    There are not built-in classes for that. You can use KeyValuePair or roll out your own implementation.

提交回复
热议问题