我有一本字典,里面有几个项目:
public static Dictionary<string, string> vmDictionary = new Dictionary<string, string>();
我有一种方法可以将其中的项目添加到列表框中:
foreach (KeyValuePair<String, String> entry in MyApp.vmDictionary)
{
ListViewItem item = new ListViewItem();
item.SubItems.Add(entry.Value[0]);
item.SubItems.Add(entry.Value[1]);
selectVMListView.Items.Add(
}
虽然我收到以下错误:
错误 2 参数 1:无法从 'char' 转换为 'string'
与这些行有关:
item.SubItems.Add(entry.Value[0]);
item.SubItems.Add(entry.Value[1]);
entry.Value[0] 和 [1] 如果我没记错的话应该是字符串,但由于某种原因它抱怨它们是字符:S