SteamBot.Trade.PrintConsole C# (CSharp) Method

PrintConsole() protected static method

protected static PrintConsole ( String line, ConsoleColor color = ConsoleColor.White ) : void
line String
color ConsoleColor
return void
		protected static void PrintConsole (String line, ConsoleColor color = ConsoleColor.White)
		{
			Console.ForegroundColor = color;
			Console.WriteLine (line);
			Console.ForegroundColor = ConsoleColor.White;
		}
		#endregion