我試圖檢索字典中的特定對,這對轉換成字符串,如下列之一:如何檢索字典鍵/值,並將它們組合爲一個字符串
Dictionary<string, string> testDictionary= new Dictionary<string, string>();
testDictionary.Add("3123", "1");
testDictionary.Add("3523", "2");
testDictionary.Add("5532", "1");
string memberId="5532";
string finalSelectedValue = testDictionary.Where(x => x.Key == memberId).Select(y => y.Key + "_" + y.Value).ToString();
Console.WriteLine(finalSelectedValue);
然而,我不知道如何實現將特定對的Key和Value組合在字典中的最後一步。
預期的結果是: 「5532_1」
我喜歡這個解決方案。清晰和安全。沒有必要遍歷關鍵字,放棄首先使用字典的整體效率。 – itsme86