ConsoleTables
ConsoleTables copied to clipboard
Print out a nicely formatted table in a console application C#
It could print the table using [box-drawing characters](https://en.wikipedia.org/wiki/Box-drawing_character). ┌───────┬─────┐ │ Name │ Age │ ├───────┼─────┤ │ Alice │ 10 │ │ Bob │ 20 │ │ Clare │ 30 │...
Add support for the [DataTable](https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable?view=netframework-4.7.2) class.
Any particular reason why to change to netstandardv2.1 ? Was there new features needed in that target? Trying to understand what looks like an arbitrary decision to upgrade when it...