mirror of
https://gitee.com/dotnetchina/MiniExcel.git
synced 2024-11-29 18:38:08 +08:00
code formatting
This commit is contained in:
parent
04866cf46c
commit
8db86219fc
@ -40,10 +40,11 @@ namespace MiniExcelLibs.Csv
|
||||
while (finalRow.Count(c => c == '"') % 2 != 0)
|
||||
{
|
||||
var nextPart = reader.ReadLine();
|
||||
if (nextPart == null ) {
|
||||
if (nextPart == null)
|
||||
{
|
||||
break;
|
||||
}
|
||||
finalRow = string.Concat( finalRow, _config.NewLine, nextPart );
|
||||
finalRow = string.Concat(finalRow, _config.NewLine, nextPart);
|
||||
}
|
||||
}
|
||||
read = Split(finalRow);
|
||||
|
Loading…
Reference in New Issue
Block a user