I'm a beginner in programming, and I'm doing a project that requires continously getting an input from the Serial Port. I already used the SerialPort class to retrieve the data and use it in my programm, and now I want to write those same SerialPort values (splitted into array[0]....array[7]) into .CSV
Please, I need help
Doughng 0 Newbie Poster
Recommended Answers
Jump to PostI would rather suggest you to use generic list<T>. But if you insist uisng string array, you can do it in this way too:
string[] array = new string[7]; //reading port and fill the array! //then you can do: string delimiter = ";"; //and write to a …
All 4 Replies
sandeepparekh9 109 Posting Whiz
Mitja Bonca 557 Nearly a Posting Maven
Doughng 0 Newbie Poster
Mitja Bonca 557 Nearly a Posting Maven
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.