以下に構築される辞書があります
Dictionary<string, string> GTNMobilelist = new Dictionary<string, string>();
GTNMobilelist = LoadMobileNumbers();
次に、辞書にクエリを実行して、テキストボックスに入力された携帯電話番号が辞書内に存在するかどうかを確認する必要があります「意味があることを願っています」:-/
これは私が持っているものです
foreach (GridViewRow HandSetRow in grdvHandSets.Rows)
{
TextBox txtmobileNumber = (TextBox)HandSetRow.FindControl("txtmobilenumber");
//I need the linq statement here if the mobile number doesnt exists i need to
//throw an error saying mobile number doesnt exist within the dictionary
//iv been looking at linq statements for the past hour and im confused :(
}
これに対する迅速な解決策を教えてくれる人はいますか?