<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp_by_API%2FSystem%2FConsole</id>
		<title>Csharp/C Sharp by API/System/Console - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp_by_API%2FSystem%2FConsole"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Console&amp;action=history"/>
		<updated>2026-04-30T01:04:00Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Console&amp;diff=4889&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Console&amp;diff=4889&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:35Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Console&amp;diff=4890&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Console&amp;diff=4890&amp;oldid=prev"/>
				<updated>2010-05-26T12:12:15Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Console.BackgroundColor==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
      Console.Title = &amp;quot;Standard Console&amp;quot;;&lt;br /&gt;
      Console.ForegroundColor = ConsoleColor.Red;&lt;br /&gt;
      Console.BackgroundColor = ConsoleColor.Green;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Press Enter to change the Console&amp;quot;s appearance.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Beep()==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Media;&lt;br /&gt;
public class MainClass {&lt;br /&gt;
   public static void Main() {&lt;br /&gt;
       Console.Beep();&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Beep(==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Media;&lt;br /&gt;
public class MainClass {&lt;br /&gt;
   public static void Main() {&lt;br /&gt;
       Console.Beep(200, 300);&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.BufferHeight==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.BufferWidth==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Clear()==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Cleared / Colored Console&amp;quot;;&lt;br /&gt;
      Console.ForegroundColor = ConsoleColor.Blue;&lt;br /&gt;
      Console.BackgroundColor = ConsoleColor.Yellow;&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.WriteLine(&amp;quot;Press Enter to change the Console&amp;quot;s appearance.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.CursorLeft==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.CursorSize==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.CursorTop==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.CursorVisible==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.ForegroundColor==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
      Console.Title = &amp;quot;Standard Console&amp;quot;;&lt;br /&gt;
      Console.ForegroundColor = ConsoleColor.Red;&lt;br /&gt;
      Console.BackgroundColor = ConsoleColor.Green;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Press Enter to change the Console&amp;quot;s appearance.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.In==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;   &lt;br /&gt;
 &lt;br /&gt;
using System;  &lt;br /&gt;
 &lt;br /&gt;
class MainClass { &lt;br /&gt;
  public static void Main() { &lt;br /&gt;
    string str; &lt;br /&gt;
 &lt;br /&gt;
    Console.WriteLine(&amp;quot;Enter some characters.&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
    str = Console.In.ReadLine(); // call TextReader&amp;quot;s ReadLine() method &lt;br /&gt;
 &lt;br /&gt;
    Console.WriteLine(&amp;quot;You entered: &amp;quot; + str); &lt;br /&gt;
  } &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Out==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;    &lt;br /&gt;
 &lt;br /&gt;
using System; &lt;br /&gt;
 &lt;br /&gt;
class MainClass { &lt;br /&gt;
  public static void Main() { &lt;br /&gt;
    int a=10, b=0; &lt;br /&gt;
    int result; &lt;br /&gt;
 &lt;br /&gt;
    Console.Out.WriteLine(&amp;quot;This will generate an exception.&amp;quot;); &lt;br /&gt;
    try { &lt;br /&gt;
      result = a / b; // generate an exception &lt;br /&gt;
    } catch(DivideByZeroException exc) { &lt;br /&gt;
      Console.Error.WriteLine(exc.Message); &lt;br /&gt;
    } &lt;br /&gt;
  } &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Read()==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;   &lt;br /&gt;
 &lt;br /&gt;
using System; &lt;br /&gt;
 &lt;br /&gt;
class MainClass {   &lt;br /&gt;
  public static void Main() { &lt;br /&gt;
    char ch; &lt;br /&gt;
 &lt;br /&gt;
    Console.Write(&amp;quot;Press a key followed by ENTER: &amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
    ch = (char) Console.Read(); // get a char &lt;br /&gt;
    &lt;br /&gt;
    Console.WriteLine(&amp;quot;Your key is: &amp;quot; + ch); &lt;br /&gt;
  }   &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.ReadLine()==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;    &lt;br /&gt;
using System;&lt;br /&gt;
using System.IO;&lt;br /&gt;
class MainClass&lt;br /&gt;
{&lt;br /&gt;
  public static void Main(string[] args)&lt;br /&gt;
  {&lt;br /&gt;
    string ans;&lt;br /&gt;
    do&lt;br /&gt;
    {&lt;br /&gt;
      Console.Write(&amp;quot;Are you done? [yes] [no] : &amp;quot;);&lt;br /&gt;
      ans = Console.ReadLine();&lt;br /&gt;
    }while(ans != &amp;quot;yes&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.ResetColor()==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.SetOut==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;  &lt;br /&gt;
using System;  &lt;br /&gt;
using System.IO; &lt;br /&gt;
  &lt;br /&gt;
public class Redirect { &lt;br /&gt;
  public static void Main() { &lt;br /&gt;
    StreamWriter log_out; &lt;br /&gt;
 &lt;br /&gt;
    try { &lt;br /&gt;
      log_out = new StreamWriter(&amp;quot;logfile.txt&amp;quot;); &lt;br /&gt;
    } &lt;br /&gt;
    catch(IOException exc) { &lt;br /&gt;
      Console.WriteLine(exc.Message + &amp;quot;Cannot open file.&amp;quot;); &lt;br /&gt;
      return ; &lt;br /&gt;
    } &lt;br /&gt;
    &lt;br /&gt;
    Console.SetOut(log_out); &lt;br /&gt;
    Console.WriteLine(&amp;quot;This is the start of the log file.&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
    for(int i=0; i&amp;lt;10; i++) Console.WriteLine(i); &lt;br /&gt;
 &lt;br /&gt;
    Console.WriteLine(&amp;quot;This is the end of the log file.&amp;quot;); &lt;br /&gt;
    log_out.Close(); &lt;br /&gt;
  } &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.SetWindowSize==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
&lt;br /&gt;
      // Change the Console appearance and redisplay.&lt;br /&gt;
      Console.Title = &amp;quot;Resized Console&amp;quot;;&lt;br /&gt;
      Console.ResetColor();&lt;br /&gt;
      Console.Clear();&lt;br /&gt;
      Console.SetWindowSize(100, 50);&lt;br /&gt;
      Console.BufferHeight = 500;&lt;br /&gt;
      Console.BufferWidth = 100;&lt;br /&gt;
      Console.CursorLeft = 20;&lt;br /&gt;
      Console.CursorSize = 50;&lt;br /&gt;
      Console.CursorTop = 20;&lt;br /&gt;
      Console.CursorVisible = false;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Main method complete. Press Enter.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Title==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
public class Test{&lt;br /&gt;
   static void Main(string[] args){&lt;br /&gt;
      Console.Title = &amp;quot;Standard Console&amp;quot;;&lt;br /&gt;
      Console.ForegroundColor = ConsoleColor.Red;&lt;br /&gt;
      Console.BackgroundColor = ConsoleColor.Green;&lt;br /&gt;
      Console.WriteLine(&amp;quot;Press Enter to change the Console&amp;quot;s appearance.&amp;quot;);&lt;br /&gt;
      Console.ReadLine();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.Write==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;    &lt;br /&gt;
&lt;br /&gt;
class MainClass {&lt;br /&gt;
   static void Main()&lt;br /&gt;
   {&lt;br /&gt;
         System.Console.Write(&amp;quot;This is text 1.&amp;quot;);&lt;br /&gt;
         System.Console.Write(&amp;quot;This is text 2.&amp;quot;);&lt;br /&gt;
         System.Console.Write(&amp;quot;This is text 3.&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Console.WriteLine==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;    &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
class MainClass&lt;br /&gt;
{&lt;br /&gt;
   static void Main()&lt;br /&gt;
   {&lt;br /&gt;
      Console.WriteLine(&amp;quot; {0} and {1}.&amp;quot;, 3, 6);&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>