namespace Spectre.Console;
///
/// A console capable of writing ANSI escape sequences.
///
public static partial class AnsiConsole
{
///
/// Writes the specified markup to the console.
///
/// The value to write.
public static void Markup(string value)
{
Console.Markup(value);
}
///
/// Writes the specified markup to the console.
///
/// A composite format string.
/// An array of objects to write.
public static void Markup(string format, params object[] args)
{
Console.Markup(format, args);
}
///
/// Writes the specified markup to the console.
///
/// An object that supplies culture-specific formatting information.
/// A composite format string.
/// An array of objects to write.
public static void Markup(IFormatProvider provider, string format, params object[] args)
{
Console.Markup(provider, format, args);
}
///
/// Writes the specified markup, followed by the current line terminator, to the console.
///
/// The value to write.
public static void MarkupLine(string value)
{
Console.MarkupLine(value);
}
///
/// Writes the specified markup, followed by the current line terminator, to the console.
///
/// A composite format string.
/// An array of objects to write.
public static void MarkupLine(string format, params object[] args)
{
Console.MarkupLine(format, args);
}
///
/// Writes the specified markup, followed by the current line terminator, to the console.
///
/// An object that supplies culture-specific formatting information.
/// A composite format string.
/// An array of objects to write.
public static void MarkupLine(IFormatProvider provider, string format, params object[] args)
{
Console.MarkupLine(provider, format, args);
}
}