码迷,mamicode.com
首页 > Windows程序 > 详细

c# Dictionary拓展2个key得到1个value

时间:2018-06-21 13:28:15      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:div   color   using   tuple   span   ict   collect   val   code   

using System.Collections.Generic;
using System.Collections;
Dictionary<Tuple<int, int>, int> dic = new Dictionary<Tuple<int, int>, int>();
dic.Add(new Tuple<int, int>(1, 2), 100);
dic.Add(new Tuple<int, int>(1, 3), 200);
dic.Add(new Tuple<int, int>(2, 1), 300);
int result = dic[new Tuple<int, int>(1, 3)];   //200

 

c# Dictionary拓展2个key得到1个value

标签:div   color   using   tuple   span   ict   collect   val   code   

原文地址:https://www.cnblogs.com/code1992/p/9208063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!