using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace DataAnalysis {
class Program {
static void Main(string[] args) {
StreamReader sr = new StreamReader(@"D:\usr\prog\PrismSoftware\log\1_oguchi\log20191220_131538.csv");
while (!sr.EndOfStream) {
var line = sr.ReadLine();
var values = line.Split(',');
}
System.Console.ReadKey();
}
}
}