我有这个数据结构:
class Conference
{
private List<List<string>>_orgs;
public List<List<string>> Orgs
{
set { _orgs = value; } get { return _orgs; }
}
}
此集合中的数据:
List<string> sublist = new List<string>();
sublist.Add("university");
sublist.Add("organization");
List<List<string>> list = new List<List<string>>();
list.Add(sublist);
然后:
Conference c = new Conference();
c.Orgs = list;
我收集了会议对象:
List<Conference> listConferences = new List<Conference>();
listConferences.Add(c);
我想搜索一个类似的字符串"uni"
并找到具有类似 .org 的会议集合"uni"
。我怎样才能做到这一点?