• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# ConsoleColor类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中ConsoleColor的典型用法代码示例。如果您正苦于以下问题:C# ConsoleColor类的具体用法?C# ConsoleColor怎么用?C# ConsoleColor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ConsoleColor类属于命名空间,在下文中一共展示了ConsoleColor类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: PrintCharOnPos

        public static void PrintCharOnPos(char ch, int y, int x, ConsoleColor color)
        {
            Console.ForegroundColor = color;

            Console.SetCursorPosition(x, y);
            Console.Write(ch);
        }
开发者ID:nincheto16,项目名称:TankBattle,代码行数:7,代码来源:ConsoleAction.cs


示例2: Write

 private void Write(string s, ConsoleColor c)
 {
     ConsoleColor temp = Console.ForegroundColor;
     Console.ForegroundColor = c;
     Write(s);
     Console.ForegroundColor = temp;
 }
开发者ID:CeeJay79,项目名称:aion_ext,代码行数:7,代码来源:ObjectDumper.cs


示例3: Print

 static void Print(ConsoleColor color, string format, params object[] args)
 {
     var old = Console.ForegroundColor;
     Console.ForegroundColor = color;
     Console.WriteLine(format, args);
     Console.ForegroundColor = old;
 }
开发者ID:kstreet,项目名称:btw-samples-homework,代码行数:7,代码来源:Program.cs


示例4: Initialize

 public static void Initialize(ConsoleColor defaultColor = ConsoleColor.Gray)
 {
     switches = new List<List<Switch>>();
     DefaultColor = defaultColor;
     _lock = new object();
     isInitialized = true;
 }
开发者ID:TwoFX,项目名称:firework-engine,代码行数:7,代码来源:UIManager.cs


示例5: WriteLine

 public static void WriteLine(ConsoleColor color, object value)
 {
     var previousColor = Console.ForegroundColor;
     Console.ForegroundColor = color;
     Console.WriteLine(value);
     Console.ForegroundColor = previousColor;
 }
开发者ID:pvginkel,项目名称:Jint2,代码行数:7,代码来源:ConsoleEx.cs


示例6: CPrint

 public static void CPrint(string Text, ConsoleColor Color)
 {
     //Set The Colour Of The Font, Then Set It Back To White
     Console.ForegroundColor = Color;
     Console.Write(Text);
     Console.ForegroundColor = ConsoleColor.White;
 }
开发者ID:cheynewallace,项目名称:pinger,代码行数:7,代码来源:Program.cs


示例7: VerboseWriteLine

 public static void VerboseWriteLine(ConsoleColor color, string output)
 {
     if (WriteVerboseOutput)
     {
         WriteLine(color, output);
     }
 }
开发者ID:rgregg,项目名称:markdown-scanner,代码行数:7,代码来源:FancyConsole.cs


示例8: Log

 private static void Log(string message, ConsoleColor color)
 {
     var keepColor = Console.ForegroundColor;
       Console.ForegroundColor = color;
       Console.WriteLine(message);
       Console.ForegroundColor = keepColor;
 }
开发者ID:decarufe,项目名称:fluentpatterns,代码行数:7,代码来源:Logger.cs


示例9: Write

 public static void Write(ConsoleColor color, string content)
 {
     Console.ForegroundColor = color;
     BreakIntoLines(content)
         .Each(l=>Console.WriteLine(l));
     Console.ResetColor();
 }
开发者ID:nieve,项目名称:FubuRESTInnovation,代码行数:7,代码来源:ConsoleWriter.cs


示例10: WriteLine

 static void WriteLine(ConsoleColor color, string text, params object[] args)
 {
     var oldColor = Console.ForegroundColor;
     Console.ForegroundColor = color;
     Console.WriteLine(text, args);
     Console.ForegroundColor = oldColor;
 }
开发者ID:frankies,项目名称:lokad-iddd-sample,代码行数:7,代码来源:LoggingWrapper.cs


示例11: ConsoleWriteLine

 private void ConsoleWriteLine(string text, ConsoleColor color)
 {
     ConsoleColor before = Console.ForegroundColor;
     Console.ForegroundColor = color;
     Console.WriteLine(text);
     Console.ForegroundColor = before;
 }
开发者ID:bizx,项目名称:HubSpotSync,代码行数:7,代码来源:Program.cs


示例12: ProgressBar

 /// <summary>
 /// Creates progress bar.
 /// </summary>
 /// <param name="name">Name of the widget.</param>
 /// <param name="pos">Position of the progress bar.</param>
 /// <param name="width">Width of the progress bar</param>
 /// <param name="maxValue">Maximum value.</param>
 /// <param name="value">Current value (default: 0).</param>
 /// <param name="fc">Foreground color (default gray).</param>
 /// <param name="bc">Background color (default black).</param>
 public ProgressBar(string name, Position pos, int width, int maxValue, float value = 0.0f,
     ConsoleColor fc = ConsoleColor.Gray, ConsoleColor bc = ConsoleColor.Black)
     : base(name, pos, width, 1, false, fc, bc)
 {
     this.Value = value;
     this.MaxValue = maxValue;
 }
开发者ID:Tamschi,项目名称:FacePuncher,代码行数:17,代码来源:ProgressBar.cs


示例13: ColoredConsoleWrite

 public static void ColoredConsoleWrite(ConsoleColor color, string text)
 {
     ConsoleColor originalColor = System.Console.ForegroundColor;
     System.Console.ForegroundColor = color;
     System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] " + text);
     System.Console.ForegroundColor = originalColor;
 }
开发者ID:Caddyrn,项目名称:PokemonGo-Bot,代码行数:7,代码来源:Logger.cs


示例14: WriteColor

 public static void WriteColor(ConsoleColor ForeGround, string var)
 {
     if (ForegroundColor != ForeGround)
         ForegroundColor = ForeGround;
     WriteLine(var.PadRight(var.Length % WindowWidth, ' '));
     LowerBoundOutput();
 }
开发者ID:ShaneK2,项目名称:inVtero.net,代码行数:7,代码来源:Support.cs


示例15: UseTextColour

 public static void UseTextColour(ConsoleColor colour, Action action)
 {
     var prevForegroundColor = Console.ForegroundColor;
     Console.ForegroundColor = colour;
     action();
     Console.ForegroundColor = prevForegroundColor;
 }
开发者ID:izrik,项目名称:IrcDotNet,代码行数:7,代码来源:ConsoleUtilities.cs


示例16: DoWrite

 protected override void DoWrite(ConsoleColor white, params string[] s)
 {
     foreach (var message in s)
     {
         Debug.WriteLine(message);
     }
 }
开发者ID:codereflection,项目名称:storevil,代码行数:7,代码来源:ConsoleResultListener.cs


示例17: GameObject

 public GameObject(int x, int y, string sprite, ConsoleColor color = DefaultColor)
 {
     this.X = x;
     this.Y = y;
     this.Sprite = sprite;
     this.Color = color;
 }
开发者ID:krasi070,项目名称:FallingRocks,代码行数:7,代码来源:GameObject.cs


示例18: UseColor

        public IDisposable UseColor(ConsoleColor consoleColor)
        {
            var old = Console.ForegroundColor;
            Console.ForegroundColor = consoleColor;

            return new DelegateDisposable(() => Console.ForegroundColor = old);
        }
开发者ID:pierrebakker,项目名称:GitVersion,代码行数:7,代码来源:ConsoleAdapter.cs


示例19: ConsoleWriteLine

		static void ConsoleWriteLine(string message, ConsoleColor foregroundColor)
		{
			var oldForegroundColor = System.Console.ForegroundColor;
			System.Console.ForegroundColor = foregroundColor;
			System.Console.WriteLine(message);
			System.Console.ForegroundColor = oldForegroundColor;
		}
开发者ID:cincuranet,项目名称:ConfigureAwaitChecker,代码行数:7,代码来源:Program.cs


示例20: PrintEncolored

 public static void PrintEncolored(string text, ConsoleColor color, params object[] arguments)
 {
     var clr = Console.ForegroundColor;
     Console.ForegroundColor = color;
     Console.WriteLine(text, arguments);
     Console.ForegroundColor = clr;
 }
开发者ID:jaddyknight,项目名称:EnsageSharp,代码行数:7,代码来源:AutoDeward2.cs



注:本文中的ConsoleColor类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# ConsoleKey类代码示例发布时间:2022-05-24
下一篇:
C# Console类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap