1

这是我的代码

   private static ArrayList GetFirstObjectFromDictionary(Dictionary<string, string> dictionary)
    {
        foreach (ArrayList arr in dictionary.Values) //error 
        {
            return arr;
        }
        return null;
    }

它会导致错误“无法将类型 'string' 转换为 'System.Collections.ArrayList'”。

4

1 回答 1

1

您可以使用 KeyValuePair 来访问字典的项目。

private static ArrayList GetFirstObjectFromHashTable(Dictionary<string, string> dictionary)
{
    ArrayList aLst = new ArrayList();

    foreach (KeyValuePair<string, string> pair in dictionary)
    {
        aLst.Add(pair.Value);
    }

    return aLst;
}

此页面可能会帮助您了解 foreach 与字典一起使用。

于 2013-05-27T05:55:02.133 回答