Add AnsiConsole.Write method

This commit also obsoletes the `AnsiConsole.Render` method.

Closes #576
This commit is contained in:
Patrik Svensson
2021-10-05 00:45:46 +02:00
committed by Phil Scott
parent ca2e6ce0ad
commit e0395dfa2b
19 changed files with 49 additions and 39 deletions

View File

@ -23,7 +23,7 @@ namespace Demo.Utilities
value ?? "[grey]null[/]");
}
AnsiConsole.Render(table);
AnsiConsole.Write(table);
}
}
}