问题描述
- 如何做字典表查询啊,求大神带我飞
-
如何做字典表查询,做字典表查询都需要会什么技术,都涉及哪些方面,做字典表查询的步骤
解决方案
你这个字典表指的是什么?数据库中建的字典表,还是编程语言中的Dictionary?
如果是前者,用sql就行了,如果是后者,dic有扩展方法可以查询。
解决方案二:
Dictionary dict = new Dictionary();
dict.Add(1, "abc");
dict.Add(2, "def");
string s1 = dict[1]; // abc
string s2 = dict.First(x => x.Key == 2).Value; // def
解决方案三:
Dictionary<int, string> dict = new Dictionary()<int, string>;
dict.Add(1, "abc");
dict.Add(2, "def");
string s1 = dict[1]; // abc
string s2 = dict.First(x => x.Key == 2).Value; // def
时间: 2024-09-15 17:10:12