質問編集履歴
1
コードの修正をしました
title
CHANGED
File without changes
|
body
CHANGED
@@ -35,10 +35,10 @@
|
|
35
35
|
Sr.ReadLine();
|
36
36
|
while (!Sr.EndOfStream)
|
37
37
|
{
|
38
|
-
string[] ReadCSVLines = Sr.ReadToEnd().
|
38
|
+
string[] ReadCSVLines = Sr.ReadToEnd().Split(linedelimiter);
|
39
39
|
foreach(string ReadCSVLine in ReadCSVLines)
|
40
40
|
{
|
41
|
-
string[] DataItem = ReadCSVLine.
|
41
|
+
string[] DataItem = ReadCSVLine.Split(columndelimiter);
|
42
42
|
if(DataItem.Length == 10)
|
43
43
|
{
|
44
44
|
ReadCSVList.Add(DataItem);
|