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

C# int.TryParse Method


แปลงการแสดงสตริงของตัวเลขเป็นจำนวนเต็ม โดยใช้เมธอด int.TryParse ใน C# หากไม่สามารถแปลงสตริงได้ เมธอด int.TryParse จะคืนค่าเท็จ เช่น ค่าบูลีน

สมมติว่าคุณมีการแสดงสตริงของตัวเลข

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