Closed gakada closed 9 years ago
https://tools.ietf.org/html/rfc4180 states that
The last field in the record must not be followed by a comma.
which is currently the case and can complicate things (e.g. R's read.csv function can't parse it by default).
So I replaced foreach with string.Join, is it fine or should it be a loop instead (since ForEach was replaced by foreach previously)?
https://tools.ietf.org/html/rfc4180 states that
which is currently the case and can complicate things (e.g. R's read.csv function can't parse it by default).
So I replaced foreach with string.Join, is it fine or should it be a loop instead (since ForEach was replaced by foreach previously)?