Csharp/C Sharp by API/System/ConsoleColor — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 12:12, 26 мая 2010
ConsoleColor.Red
using System;
public class Test{
static void Main(string[] args){
Console.Title = "Standard Console";
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.Green;
Console.WriteLine("Press Enter to change the Console"s appearance.");
Console.ReadLine();
}
}