📌  相关文章
📜  C#| Convert.ToUInt32(String,IFormatProvider)方法

📅  最后修改于: 2021-05-29 15:39:34             🧑  作者: Mango

此方法用于使用指定的区域性特定格式信息将数字的指定字符串表示形式转换为等效的32位无符号整数。

句法:

public static uint ToUInt32 (string value, IFormatProvider provider);

参数:

  • value :这是一个字符串,其中包含要转换的数字。
  • provider提供者,它提供特定于区域性的格式信息。

返回值:该方法返回一个32位无符号整数,该整数等于value中的数字,如果valuenull ,则返回0(零)。

例外情况:

  • FormatException:如果该不包含一个可选的符号,后跟一个数字序列(0到9)。
  • OverFlowException:如果该表示一个小于MinValue或大于MaxValue的数字

下面的程序说明了Convert.ToUInt32(String,IFormatProvider)方法的用法:

范例1:

// C# program to demonstrate the
// Convert.ToUInt32() Method
using System;
using System.Globalization;
  
class GFG {
  
// Main Method
public static void Main()
{
    try {
  
        // creating object of CultureInfo
        CultureInfo cultures = new CultureInfo("en-US");
  
        // declaring and initializing String array
        string[] values = {"12345", "+12345",
                                "123456789"};
  
        // calling get() Method
        Console.Write("Converted uint value"
             + " from a specified string ");
  
        for (int j = 0; j < values.Length; j++) 
        {
            get(values[j], cultures);
        }
    }
  
    catch (FormatException e)
    {
        Console.WriteLine("\n");
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
  
    catch (OverflowException e)
    {
        Console.WriteLine("\n");
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
  
// Defining get() method
public static void get(string s,
           CultureInfo cultures)
{
  
    // converting string to specified uint
    uint val = Convert.ToUInt32(s, cultures);
  
    // display the converted uint value
    Console.Write(" {0}, ", val);
}
}
输出:
Converted uint value from a specified string  12345,  12345,  123456789,

示例2:对于FormatException

// C# program to demonstrate the
// Convert.ToUInt32() Method
using System;
using System.Globalization;
  
class GFG {
  
// Main Method
public static void Main()
{
  
    try {
  
        // creating object of CultureInfo
        CultureInfo cultures = new CultureInfo("en-US");
  
        // declaring and initializing String array
        string[] values = {"12345", "+12345",
                                "123456789"};
  
        // calling get() Method
        Console.Write("Converted uint value"
               + " of specified strings: ");
  
        for (int j = 0; j < values.Length; j++) 
        {
            get(values[j], cultures);
        }
  
        Console.WriteLine("\n");
        string s = "123 456, 789";
  
        Console.WriteLine("format of s is invalid ");
  
        // converting string to specified uint
        uint val = Convert.ToUInt32(s, cultures);
  
        // display the converted uint value
        Console.Write(" {0}, ", val);
    }
  
    catch (FormatException e) 
    {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
  
    catch (OverflowException e)
    {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
  
// Defining get() method
public static void get(string s,
           CultureInfo cultures)
{
  
    // converting string to
    // specified uint value
    uint val = Convert.ToUInt32(s, cultures);
  
    // display the converted
    // uint value
    Console.Write(" {0}, ", val);
}
}
输出:
Converted uint value of specified strings:  12345,  12345,  123456789, 

format of s is invalid 
Exception Thrown: System.FormatException

示例3:对于OverflowException

// C# program to demonstrate the
// Convert.ToUInt32() Method
using System;
using System.Globalization;
  
class GFG {
  
// Main Method
public static void Main()
{
  
    try {
  
        // creating object of CultureInfo
        CultureInfo cultures = new CultureInfo("en-US");
  
        // declaring and initializing String array
        string[] values = {"12345", "+12345",
                                "123456789"};
  
        // calling get() Method
        Console.Write("Converted uint value "
                 + "of specified strings: ");
  
        for (int j = 0; j < values.Length; j++) 
        {
            get(values[j], cultures);
        }
  
        Console.WriteLine("\n");
        string s = "-7922816251426433759354395033500000";
  
        Console.WriteLine("s is less than the MinValue");
  
        // converting string to specified uint
        uint val = Convert.ToUInt32(s, cultures);
  
        // display the converted uint value
        Console.Write(" {0}, ", val);
    }
  
    catch (FormatException e) 
    {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
  
    catch (OverflowException e)
    {
        Console.Write("Exception Thrown: ");
        Console.Write("{0}", e.GetType(), e.Message);
    }
}
  
// Defining get() method
public static void get(string s,
           CultureInfo cultures)
{
  
    // converting string to
    // specified uint value
    uint val = Convert.ToUInt32(s, cultures);
  
    // display the converted uint value
    Console.Write(" {0}, ", val);
}
}
输出:
Converted uint value of specified strings:  12345,  12345,  123456789, 

s is less than the MinValue
Exception Thrown: System.OverflowException

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.convert.touint32?view=netframework-4.7.2#System_Convert_ToUInt32_System_String_System_IFormatProvider_