douglasg14b / BetterConsoleTables

Faster, colorable, more configurable, and more robust console colors & tables for C# console applications
GNU Lesser General Public License v3.0
92 stars 16 forks source link

Config.UnicodeAlt(); not working #8

Closed Zanga1 closed 5 years ago

Zanga1 commented 5 years ago

.Config = Config.UnicodeAlt(); Not working

I needed to delete that line and add: table.Config = TableConfiguration.UnicodeAlt();

Should be changed in documentation

thank you

douglasg14b commented 5 years ago

Thanks!

I'll look into this

douglasg14b commented 5 years ago

@Zanga1

This is because the Config class was removed for TableConfiguration to avoid using such a general name, which causes conflicts with other libraries.

I'll update the documentation.