Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# 콘솔의 입력 인코딩 체계를 변경하는 방법은 무엇입니까?

<시간/>

콘솔의 입력 인코딩 체계를 변경하려면 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# 콘솔의 입력 인코딩 체계를 변경하는 방법은 무엇입니까?