How to fill combobox with text file item!

前端 未结 2 1289
清酒与你
清酒与你 2021-01-13 04:51

I have a text file which contain following type item

wett45456,4556,45657,898

tyu5878,4566,7989,55565

now i have a windowform on that form

2条回答
  •  执笔经年
    2021-01-13 05:21

    string[] lineOfContents = File.ReadAllLines("Myfile.txt");
    foreach (var line in lineOfContents)
    {
       string[] tokens = line.Split(',');
       comboBox1.Items.Add(tokens[0]);
    }
    

提交回复
热议问题