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

C# int.Parse 메서드

<시간/>

C#의 int.Parse 메서드를 사용하여 숫자의 문자열 표현을 정수로 변환합니다. 문자열을 변환할 수 없는 경우 int.Parse 메서드는 예외를 반환합니다.

숫자의 문자열 표현이 있다고 가정해 보겠습니다.

string myStr = "200";

이제 정수로 변환하려면 int.Parse()를 사용하십시오. 변환됩니다.

int.Parse(myStr);

using System.IO;
using System;
class Program {
   static void Main() {
      int res;
      string myStr = "200";
      res = int.Parse(myStr);
      Console.WriteLine("String is a numeric representation: "+res);
   }
}

출력

String is a numeric representation: 200