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 ihave a combobox now i want fill combobox with firstitem of each row wett45456
,tyu5878
Thank you
string[] lineOfContents = File.ReadAllLines("Myfile.txt");
foreach (var line in lineOfContents)
{
string[] tokens = line.Split(',');
comboBox1.Items.Add(tokens[0]);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With