is there quick way to export an array to Excel file using C#?
c#, excel
Solution
Output the data to a file, separating the array elements with commas. Then save the file as name.csv
Use FileWriter to output the file.
Problem
I have arrays of points that contain series data (x & y). Is there a quick way to output these arrays into an excel file? Thanks