Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
ive looked on the web for this and,I find them not that helpful,I know how to read a normel text file and put it on a textbox, but i want to be able to be able to read the csv files in a listbox.

for example. (CSV)
hi,hi2,hi3

for example. (listbox)
hi
hi2
hi3

and this will be using the .csv not the .txt

I was wondering if anyone can help me achieve this goal? and if so please explain how it works
Posted

1 solution

The string class has a split method. You can read a file with File.ReadAllLines and get a string array. Each string, you can split on the , to get an array of individual strings.

There's also a CSV class on Code Project somewhere...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900