当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Boolean.TryParse()用法及代码示例


此方法用于将指定的逻辑值的字符串表示形式转换为其等效的布尔值。它返回一个值,该值指示转换是成功还是失败。

用法:

public static bool TryParse (string value, out bool result);

参数:


  • value:它是一个包含要转换的值的字符串。
  • result:当此方法返回时,如果转换成功,则在value等于TrueString时包含true,或者在value等于FalseString时包含false。如果转换失败,则包含false。如果该值为null或不等于TrueString或FalseString字段的值,则转换失败。

返回值:如果成功转换了值,则此方法返回true,否则返回false。

以下示例程序旨在说明Boolean.TryParse(String,Boolean)方法的用法:

示例1:

// C# program to demonstrate 
// Boolean.TryParse(String, Boolean) 
// Method 
using System; 
  
class GFG { 
  
// Main Method 
public static void Main() { 
  
        // passing different values  
        // to the method to check 
        checkParse("true"); 
        checkParse("false"); 
        checkParse("'     true     '"); 
        checkParse(" $  "); 
        checkParse("1"); 
    } 
  
// Declaring checkparse method 
public static void checkParse(string value) { 
  
        // Declaring data type 
        bool result; 
        bool flag; 
   
        // using the method 
        result = Boolean.TryParse(value, out flag); 
  
        // Display boolean type result 
        Console.WriteLine("{0} --> {1} ", value, result); 
    } 
}
输出:
true --> True 
false --> True 
'     true     ' --> False 
 $   --> False 
1 --> False

示例2:

// C# program to demonstrate 
// Boolean.TryParse(String, Boolean) 
// Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // passing different values  
        // to the method to check 
        checkParse("true1"); 
        checkParse(null); 
        checkParse(String.Empty); 
    } 
  
// Declaring checkparse method 
public static void checkParse(string value) { 
  
        // Declaring data type 
        bool result; 
        bool flag; 
   
        // using the method 
        result = Boolean.TryParse(value, out flag); 
  
        // Display boolean type result 
        Console.WriteLine("{0} --> {1} ", value, result); 
    } 
}
输出:
true1 --> False 
 --> False 
 --> False

注意:TryParse方法类似于Parse方法,但是如果转换失败,TryParse方法不会引发异常。

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 C# | Boolean.TryParse() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。