摘要:
public IList<ExamTestInfo> Get(int year) { IList<ExamTestInfo> list = new List<ExamTestInfo>(); Dictionary<string, int> t = SelectCodeYear(); foreach (KeyValuePair<string, int> pair in t) { if (pair.Value == year) { ... 阅读全文
posted @ 2012-05-24 00:53
Supe
阅读(295)
评论(0)
推荐(0)