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

C# int.TryParse 메서드

<시간/>

C#에서 int.TryParse 메서드를 사용하여 숫자의 문자열 표현을 정수로 변환합니다. 문자열을 변환할 수 없는 경우 int.TryParse 메서드는 false, 즉 부울 값을 반환합니다.

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

string myStr = "12";

이제 정수로 변환하려면 int.TryParse()를 사용하십시오. 변환되어 True를 반환합니다.

int.TryParse(myStr, out a);

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

출력

String is a numeric representation: True