API - new static entry point #2166
DavidBishopLTS
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is probably the most popular CSV library out there - and I'm always encountering it, on many projects.
I find the standard API a little verbose.
It would be really great if you could provide an static method on CsvReader
such that I can do:
var objects = CsvReader.Read<MyObject>(myString);
This might seem like a minor nonsense request - but for many many cases this is all you need.
Also, and overload that takes
IEnumerable<string>
- such that you can stream withFile.ReadAllLines(path)
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions