我在 .net 项目中有一个问题。我正在使用 System.Collections.Hashtable 来存储值并添加键值,例如
“在段落之间放回”
我想在该键值上搜索单词“between”。
现在我正在使用
//Declare hash table
System.Collections.Hashtable _Index;
//add values to hashtable
_Index.Add("putreturnsbetweenparagraphs",theword );
//search section
string searchWord="between";
if (_Index.ContainsKey(searchWord))
{
//code
}
对此有任何想法吗?