I\'d like to create an array from a CSV file.
This is about as simple as you can imagine, the CSV file will only ever have one line and these values:
If there is only ever one line then do something like this:
using System; using System.IO; class Program { static void Main() { String[] values = File.ReadAllText(@"d:\test.csv").Split(','); } }