ANSITerm

Namespace

Declared in:


This library provides cross-platform terminal access capabilities.

Nested types

Class

  • ANSIConsole
  • Struct

  • ColorValue
  • Enum

  • Color16
  • Color256
  • Color8
  • ColorMode
  • Direction
  • Interface

  • IConsoleBackend
  • Examples

    
    using ANSITerm;
    
    public static void Main(string[] args)
    {
    var term = ANSIConsole.GetInstance();
    term.ForegroundColor = new ColorValue(Color8.Red);
    term.WriteLine("Hello, world!");
    }
    
    


    Back to index