2016-11-30から1日間の記事一覧

1行csv読み込みw

C#

static string[][] getCsv(string path) { return File.ReadLines(path).Select(x => x.Split(new []{','}, StringSplitOptions.RemoveEmptyEntries)).ToArray(); }