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


C# Char.ConvertToUtf32(String, Int32)用法及代码示例


此方法用于将字符串中指定位置的UTF-16编码字符或代理对的值转换为Unicode代码点。

用法:

public static int ConvertToUtf32 (string s, int index);

参数:


  • s:包含字符或代理对的字符串。
    index:字符或代理对在s中的索引位置。

返回值:此方法在index参数指定的s参数中的位置处返回由字符或代理对表示的21位Unicode代码点。

异常:

  • ArgumentNullException:如果s为null。
  • ArgumentOutOfRangeException:如果index不是s内的位置。
  • 参数异常:如果索引不在s内。
  • ArgumentException:如果指定的索引位置包含一个代理对,并且该对中的第一个字符不是有效的高代理,或者该对中的第二个字符不是有效的低代理。

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

范例1:

// C# program to demonstrate 
// Char.ConvertToUtf32(String, Int32) 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
// Main Method 
public static void Main() 
{ 
    try { 
  
        // declaring and initializing int  
        // variable with 21 bit unicode 
        int utf = 0xF42; 
  
        // getting the value 
        // using ConvertFromUtf32() 
        string value = Char.ConvertFromUtf32(utf); 
  
        // getting unicode point 
        // using ConvertToUtf32() method 
        int val = Char.ConvertToUtf32(value, 0); 
  
        // Display the value 
        Console.WriteLine("value is 0x{0:X}", val); 
    } 
      
    catch (ArgumentOutOfRangeException e) { 
  
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
} 
}
输出:
value is 0xF42

范例2:对于ArgumentOutOfRangeException

// C# program to demonstrate 
// Char.ConvertToUtf32(String, Int32) 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
// Main Method 
public static void Main() 
{ 
    try { 
  
        // declaring and initializing int  
        // variable with 21 bit unicode 
        int utf = 0x42F; 
  
        // getting the value 
        // using ConvertFromUtf32() 
        string value = Char.ConvertFromUtf32(utf); 
  
        // getting unicode point 
        // using ConvertToUtf32() method 
        Console.WriteLine("index is not a position within s."); 
        int val = Char.ConvertToUtf32(value, 0xDFFF); 
  
        // Display the value 
        Console.WriteLine("value is 0x{0:X}", val); 
    } 
      
    catch (ArgumentOutOfRangeException e) { 
  
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
} 
}
输出:
index is not a position within s.
Exception Thrown:System.ArgumentOutOfRangeException

范例3:对于ArgumentNullException

// C# program to demonstrate 
// Char.ConvertToUtf32(String, Int32) 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        try { 
  
            // declaring and initializing  
            // int variablewith 21 bit  
            // unicode int utf = 0x42F; 
  
            // getting the value 
            // using ConvertFromUtf32() 
            string value = null; 
  
            // getting unicode point 
            // using ConvertToUtf32() method 
            Console.WriteLine("string value is null"); 
            int val = Char.ConvertToUtf32(value, 0); 
  
            // Display the value 
            Console.WriteLine("value is 0x{0:X}", val); 
        } 
        catch (ArgumentNullException e) { 
  
            Console.Write("Exception Thrown:"); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
        catch (ArgumentOutOfRangeException e) { 
  
            Console.Write("Exception Thrown:"); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
        catch (ArgumentException e) { 
  
            Console.Write("Exception Thrown:"); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
输出:
string value is null
Exception Thrown:System.ArgumentNullException

参考:



相关用法


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