protected override void PrintContent()
        {
            CPrinter.PrintList(options.Select(o => $"[{ (o == currentOption ? '*' : ' ') }] { o.Name } "));

            if (!string.IsNullOrWhiteSpace(notice))
            {
                CPrinter.PrintEmptyLine();
                CPrinter.PrintText(notice);
            }
        }
示例#2
0
 protected override void PrintContent()
 {
     CPrinter.PrintText(message);
 }