Мне кажется, столбцы разделены вкладками (U + 0009), не так ли?Просто сделай
using (var reader = new StreamReader(@"trends.csv", true))
{
string line;
while ((line = reader.ReadLine()) != null)
{
var items = line.Split('\t');
if (items.Length == 3) // recognizing the header etc. left as an exercise for the reader
{
Console.WriteLine("Date: {0}, value = {1}, error = {2}", items[0], items[1], items[2]);
}
}
}