So What I am trying to do it take a CSV file take what is in it and diplay it in a big textbox or txt file.
String[] lines = File.ReadAllText("**").Split(',');
foreach (string line in lines)
{
textBox1.Text = line;
}
That is what I have so far. Issues is it reads it and puts it in the textbox but it deplays as
Hi
I
Am
Bob
But I want it to read 1 whole line then skip and so forth so it will read
Hi, I, Am, Bob
Then goes to row 2. Also can't figure out how to skip some columns and only look at like say column 3 and 4
Am, Bob
Everything I have found so far is in VB.Net and can't find much of c#. So any help would be awesome. Thanks.