在字典 TryGetValue 中,如果它是 class 的一部分,我该如何编写输出参数(并获取它的值)?

In a Dictionary TryGetValue, how do I write the out parameter (and get it's values) if it's part of a class?

过去的问题线程和 link 到完整的代码

我用一个 class 作为参数创建了我的字典,因此它可以包含两个 string 值。现在我正在尝试将 TryGetValue 写入 out class:

中的两个字符串
public class DictionaryInitializer
{
    public class DictionarySetup
    {
        public string theDescription { get; set; }
        public string theClass { get; set; }
    }

如您所见,DictionarySetup 中嵌套了 theDescriptiontheClass。然后我会在这里使用 class 创建字典:

    public class DictionaryInit
    {
        //IS_Revenues data
        public Dictionary<int, DictionarySetup> accountRevenue = new Dictionary<int, DictionarySetup>()
            {
                { 400000, new DictionarySetup {theDescription="Call", theClass="Revenues"}}
            };
        public Dictionary<int, DictionarySetup> accountExpenses = new Dictionary<int, DictionarySetup>()
            {
                {790100, new DictionarySetup { theDescription="Currency Hedge", theClass="Other income/expense"}}
            };
    }

然后,我计划在字典上使用 TryGetValue 的扩展方法:

    public void DictionaryUseKey(int MapCode, int MapKey, int rowindex, Dictionary<int, DictionarySetup> AccountLexicon)
    {
        AccountLexicon[1] = new DictionarySetup();
        DictionarySetup Classes;
        DictionarySetup Descriptions;
        //Saw the above code in another thread, not sure if it's what I should be doing but it seems pretty close to what I want, however, I don't know how to specify the DictionarySetup.theDescription for example;
        AccountLexicon.TryGetValue(MapKey, out Classes);
        {
            //I want to be able to write theDescription and theClass into string variables for use below if the `TryGetValue` returns true, but it seems to me that it can only out one value? How does this work?
            DGVMain.Rows[rowindex].Cells[3].Value =  ?? how do I write something like...  theValues.theDescription;
            DGVMain.Rows[rowindex].Cells[11].Value = ?? how do I write something like...  theValues.theClass;
        }
    }

最后,我在我的事件中调用了扩展方法,如下所示:

    private void btnMapper_Click(object sender, EventArgs e)
    {
        for (int rowindex = 0; rowindex < DGVMain.RowCount; rowindex++)
        {
            int accountKey = Convert.ToInt32(DGVMain.Rows[rowindex].Cells[2].Value);
            int projCode = Math.Abs(Convert.ToInt32(DGVMain.Rows[rowindex].Cells[7].Value));
            int deptCode = Math.Abs(Convert.ToInt32(DGVMain.Rows[rowindex].Cells[9].Value));
            int AbsoluteKey = Math.Abs(accountKey);
            while (AbsoluteKey >= 10) { AbsoluteKey /= 10; }
            while (deptCode >= 10) { deptCode /= 10; }
            theDictionary = new DictionaryInit();
            DictionaryUseKey(deptCode, accountKey, theDictionary.accountRevenue);
        }
    }

其实TryGetValue方法会returns一个boolean值表示指定的key是否存在,如果找到key,对应的值会存储在out参数中。在您的例子中,out 参数是 Classes 并且在您的代码中定义如下:DictionarySetup Classes。这意味着如果密钥存在于字典中意味着相应的 DictionarySetup 对象将存储在 Classes 中,因此您可以从 [=12= 访问 theDescriptiontheClass ];考虑以下代码:

 if(AccountLexicon.TryGetValue(MapKey, out Classes))
 {
    DGVMain.Rows[rowindex].Cells[3].Value =  Classes.theDescription;
    DGVMain.Rows[rowindex].Cells[11].Value = Classes.theClass;
 }