0

我无法将 a 发送List<>到文本框,我不确定是什么问题。我已经检查过,列表中实际上有值,并且它被正确地从类转移到这个块中。

编码:

  public void Listtest(List<string> m_customers)
    {
        lstRegistry.Items.Clear();


        for (int index = 0; index == m_customers.Count; index++)
        {
            lstRegistry.Items.Add(m_customers[index]);
        }
    }

发送List<>

     class CustomManager
{
    //private List<Customer> m_customers;
    List<string> m_customers = new List<string>();        

    public void CreateNewString(string adresslist, string emaillist, string phonelist, string namelist)
    {
        MainForm strIn = new MainForm();
        string newlist = string.Format("{0,-3} {1, -10} {2, -20} {3, -30}", namelist, phonelist, emaillist, adresslist);           
        m_customers.Add(newlist);  //líst is created.
        strIn.Listtest(m_customers);           
    }
}  

我只是无法让它工作,我真的被卡住了。:/

感谢任何和所有的帮助和想法!!!

//问候

4

2 回答 2

9

将循环条件更改为:index < m_customers.Count

编辑 此外,您可能希望为此数据创建一个类:

class Person
{
    public string Name {get; set;}
    public string Address {get; set;}
    public string Email {get; set;}
}

因此,您可以制作人员列表:List<Person>

于 2012-08-06T15:55:08.747 回答
2

Erno 的回答应该可以解决您的问题,但我也建议您阅读foreach。使用它会改变你的代码:

    for (int index = 0; index < m_customers.Count; index++)
    {
        lstRegistry.Items.Add(m_customers[index]);
    }

    foreach (string cust in m_customers)
    {
        lstRegistry.Items.Add(cust );
    }

我认为这更容易阅读。

于 2012-08-06T15:56:52.007 回答