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


C# UInt16.Parse(String)用法及代码示例


UInt16.Parse(String)方法用于将数字的字符串表示形式转换为其等效的16位无符号整数。

用法:

public static ushort Parse (string str);

在这里,str是一个包含要转换的数字的字符串。 str的格式为[可选空白] [可选符号]数字[可选空白]。该符号可以是正号或负号。但是负号只能与零一起使用,否则它将引发OverflowException。


返回值:它是一个16位无符号整数,等效于str中包含的数字。

异常:

  • ArgumentNullException:如果str为null。
  • FormatException:如果str的格式不正确。
  • OverflowException:如果str表示一个小于MinValue或大于MaxValue的数字。

以下示例程序旨在说明上述方法的使用:

示例1:

// C# program to demonstrate 
// UInt16.Parse(String) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // passing different values 
        // to the method to check 
        checkParse("65535"); 
        checkParse("15,784"); 
        checkParse("-4589"); 
        checkParse(" 785"); 
    } 
  
    // Defining checkParse method 
    public static void checkParse(string input) 
    { 
  
        try { 
  
            // declaring UInt16 variable 
            ushort val; 
  
            // getting parsed value 
            val = UInt16.Parse(input); 
            Console.WriteLine("'{0}' parsed as {1}", input, val); 
        } 
  
        catch (OverflowException) { 
            Console.WriteLine("Can't Parsed '{0}'", input); 
        } 
  
        catch (FormatException) { 
            Console.WriteLine("Can't Parsed '{0}'", input); 
        } 
    } 
}
输出:
'65535' parsed as 65535
Can't Parsed '15,784'
Can't Parsed '-4589'
' 785' parsed as 785

示例2:对于ArgumentNullException

// C# program to demonstrate 
// UInt16.Parse(String) Method 
// for ArgumentNullException 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        try { 
  
            // passing null value as a input 
            checkParse(null); 
        } 
  
        catch (ArgumentNullException e) { 
  
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
  
        catch (FormatException e) { 
  
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
  
    // Defining checkparse method 
    public static void checkParse(string input) 
    { 
  
        // declaring UInt16 variable 
        ushort val; 
  
        // getting parsed value 
        val = UInt16.Parse(input); 
        Console.WriteLine("'{0}' parsed as {1}", input, val); 
    } 
}
输出:
Exception Thrown: System.ArgumentNullException

参考:



相关用法


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