Lớp Console trong C # được sử dụng để đại diện cho các luồng đầu vào, đầu ra và lỗi tiêu chuẩn cho các ứng dụng bảng điều khiển.
Hãy để chúng tôi xem một số ví dụ về thuộc tính lớp Console trong C # -
Thuộc tính Console.CursorLeft
Để thay đổi CursorLeft của Console trong C #, hãy sử dụng thuộc tính Console.CursorLeft.
Ví dụ
Hãy để chúng tôi xem một ví dụ -
using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("\nForeground color changed = "+Console.ForegroundColor); Console.CursorLeft = 30; Console.Write("CursorLeft position: "+Console.CursorLeft); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Thuộc tính Console.CursorSize
Để thay đổi CursorSize của Console trong C #, hãy sử dụng thuộc tính Console.CursorSize trong C #.
Ví dụ
Hãy để chúng tôi xem một ví dụ -
using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("\nForeground color changed = "+Console.ForegroundColor); Console.CursorSize = 1; Console.WriteLine("\nCursorSize = "+Console.CursorSize); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Thuộc tính Console.BufferWidth
Để thay đổi BufferWidth của Bảng điều khiển, hãy sử dụng thuộc tính Console.BufferWidth.
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ -
using System; class Demo { public static void Main (string[] args) { Console.BufferHeight = 200; Console.WriteLine("Buffer Height = "+Console.BufferHeight); Console.BufferHeight = 250; Console.WriteLine("Buffer Width = "+Console.BufferWidth); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Buffer Height = 200 Buffer Width = 200