mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 21:22:50 +08:00
16 lines
471 B
C#
16 lines
471 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// A console capable of writing ANSI escape sequences.
|
|
/// </summary>
|
|
public static partial class AnsiConsole
|
|
{
|
|
/// <summary>
|
|
/// Switches to an alternate screen buffer if the terminal supports it.
|
|
/// </summary>
|
|
/// <param name="action">The action to execute within the alternate screen buffer.</param>
|
|
public static void AlternateScreen(Action action)
|
|
{
|
|
Console.AlternateScreen(action);
|
|
}
|
|
} |