Computer >> Máy Tính >  >> Lập trình >> C#

Chuyển đổi một giá trị được chỉ định thành một giá trị Boolean tương đương trong C #

Để chuyển đổi một giá trị được chỉ định thành một giá trị Boolean tương đương, mã như sau -

Ví dụ

using System;
using System.Globalization;
public class Demo {
   public static void Main() {
      CultureInfo cultures = new CultureInfo("en-US");
      String str = "true";
      Console.WriteLine("Converted bool value...");
      bool res = Convert.ToBoolean(str, cultures);
      Console.Write("{0}", res);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Converted bool value...
True

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

using System;
using System.Globalization;
public class Demo {
   public static void Main() {
      CultureInfo cultures = new CultureInfo("es-ES", false);
      String str = "false";
      Console.WriteLine("Converted bool value...");
      bool res = Convert.ToBoolean(str, cultures);
      Console.Write("{0}", res);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Converted bool value...
False