Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะเปลี่ยนรูปแบบการเข้ารหัสอินพุตของคอนโซล C # ได้อย่างไร


หากต้องการเปลี่ยน Input Encoding Scheme ของ Console ให้ใช้คุณสมบัติ Console.InputEncoding

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Linq;
using System.Text;
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.InputEncoding = Encoding.ASCII;
      Console.WriteLine("Input Encoding Scheme = "+Console.InputEncoding);
      Console.CursorTop = 20;
      Console.WriteLine("\nCursorTop = "+Console.CursorTop);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

จะเปลี่ยนรูปแบบการเข้ารหัสอินพุตของคอนโซล C # ได้อย่างไร