我为foreach
收到以下错误Foreach语句不能对'object'类型的变量进行操作,因为'object'不包含'GetEnumerator'的公共定义
我正在犯语法错误
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Namepopu_SelectedIndexChanged(object sender, EventArgs e)
{
// this.textBox1.Text = Namepopu.Text;
// this.textBox1.Text = " ";
foreach (int i in Namepopu.SelectedItem)
this.textBox1.Text += Namepopu.Text[i];
{
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
答案 0 :(得分:5)
也许你打算这样做?
for (int i = 0; i < Namepopu.Items.Count; ++i)
{
this.textBox1.Text += Namepopu.Items[i].ToString();
}
答案 1 :(得分:0)
Namepopu.SelectedItem的内容是什么?数组 ?通用列表?首先将它转换为原始类型,然后在foreach中迭代它。
例如:
List<int> myValues = (List<int>)Namepopu.SelectedItem;
foreach (int i in myValues)
{
...
}
或
int[] myValues = (int[])Namepopu.SelectedItem;
foreach (int i in myValues)
{
...
}
答案 2 :(得分:0)
textBox1.Text = string.Empty;
foreach (var item in Namepopu.SelectedItems)
textBox1.Text += item.ToString();
答案 3 :(得分:0)
问题是您正在尝试获取未实现IEnumerator接口的枚举器。有关集合类型的列表,您可以使用每个此MSDN文章进行迭代(http://msdn.microsoft.com/en-us/library/dscyy5s0.aspx)。