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

C#에서 문자를 증가시키는 방법

<시간/>

먼저 캐릭터를 설정하세요-

char ch = 'K';

이제 단순히 다음과 같이 증가시키십시오 -

ch++;

지금 문자를 인쇄하면 다음 예와 같이 다음 문자가 됩니다 -

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      char ch = 'K';

      Console.WriteLine("Initial character:"+ch);

      // increment character
      ch++;
      Console.WriteLine("New character:"+ch);
   }
}

출력

Initial character:K
New character:L