我在.net項目中遇到問題。我使用System.Collections.Hashtable存儲的值,並添加像在System.Collections.Hashtable中搜索單詞
鍵值「putreturnsbetweenparagraphs」
,我要搜索單詞「之間」對鍵值。
我現在用的
//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
}
這方面有任何想法?
你打算在散列表中添加多個鍵然後你想要搜索嗎? –
爲什麼你有四個c#標籤?沒有關於你的問題的特定版本(甚至沒有任何C#特定的),即使有我希望你添加一個指定版本的單個標籤。這個問題也沒有任何特定的asp.net。這真的只是.NET。 –