MarkupLineInterpolated(IAnsiConsole, IFormatProvider, FormattableString) Method
Writes the specified markup, followed by the current line terminator, to the console.
All interpolation holes which contain a string are automatically escaped so you must not call
EscapeMarkup(string)
.
public static void MarkupLineInterpolated(this IAnsiConsole console, IFormatProvider provider, FormattableString value)
- Namespace
- Spectre
.Console - Containing Type
- Ansi
Console Extensions
Examples
string input = args[0];
string output = Process(input);
console.MarkupLineInterpolated(CultureInfo.InvariantCulture, $"[blue]{input}[/] -> [green]{output}[/]");
Parameters
- IAnsiConsole console
- The console to write to.
- IFormatProvider provider
- An object that supplies culture-specific formatting information.
- FormattableString value
- The interpolated string value to write.