yuyuvn / KanColleViewer

Support both Horizontal & Vertical in one version
MIT License
109 stars 52 forks source link

Fix Logger CSV format #57

Closed gakada closed 9 years ago

gakada commented 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)?