Faster, colorable, more configurable, and more robust console colors & tables for C# console applications
Hi there, I'm trying to use this library in LINQPad to copy/paste a table for some readme docs; but soon as I try to call `.ToString` on the table, I get an IO exception. I'm guessing because the library is running in an execution context without the console subsystem, but it would be nice if it ran in a situation like this without a console. Here's the query I tried to run in LINQPad: * Referencing `Bogus.dll` https://github.com/bchavez/Bogus * Referencing `BetterConsoleTables`. ```csharp void Main() { Randomizer.Seed = new Random(1337); var orderIds = 0; var testOrders = new Faker<Order>() .RuleFor(o => o.OrderId, f => orderIds++) .RuleFor(o => o.Item, f => f.Commerce.Product() ) .RuleFor(o => o.Quantity, f => f.Random.Number(1, 5)); var orders = testOrders.Generate(5).ToArray(); orders.Dump(); var table = new Table("OrderId", "Item", "Quantity"); foreach( var o in orders){ table.AddRow(o.OrderId, o.Item, o.Quantity); } table.ToString().Dump(); } // Define other methods and classes here public class Order{ public int OrderId{get;set;} public string Item{get;set;} public int Quantity{get;set;} } ``` And here's the exception stack I'm getting:  Feel free to close the issue if you don't think this is an appropriate execution environment. Also, I could send a pull request to fix the issue if you think it is appropriate to accept one. Let me know. Thanks! Brian
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by bchavez and has received 2 comments.