當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# UInt64.ToString()方法用法及代碼示例


UInt64.ToString方法用於將當前UInt64實例的數值轉換為其等效的字符串表示形式。此方法的重載列表中有4種方法,如下所示:

    • ToString(IFormatProvider)方法
    • ToString(String,IFormatProvider)方法
    • ToString()方法
    • ToString(String)方法

在這裏,我們將討論前兩種方法。



ToString(IFormatProvider) Method

此方法用於使用指定的區域性特定格式信息將當前實例的數值轉換為其等效的字符串表示形式。

用法:

public string ToString (IFormatProvider provider);

參數:此方法采用IFormatProvider類型的對象,該對象提供特定於區域性的格式設置信息。

返回值:此方法返回當前實例的值的字符串表示形式,該值由介於0到9之間的數字序列組成,沒有符號或前導零。

例:

// C# program to demonstrate 
// UInt64.ToString(IFormatProvider) 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // declaring and initializing 
        // UInt64 value 
        ulong s1 = 11331244; 
  
        // creating and initializing 
        // the object of CultureInfo 
        CultureInfo provider = new CultureInfo("en-us"); 
  
        // Using the method 
        string str = s1.ToString(provider); 
  
        // Display the value 
        Console.WriteLine("The Value is {0} and provider is {1}", 
                                             str, provider.Name); 
    } 
}
輸出:
The Value is 11331244 and provider is en-US

UInt64.ToString(String, IFormatProvider) Method

此方法用於使用指定的格式和區域性特定的格式設置信息將當前實例的數值轉換為等效的字符串表示形式。

用法:

public string ToString (string format, IFormatProvider provider);

參數:

  • format:它是數字格式的字符串。
    provider:它是提供區域性特定格式信息的對象。


返回值:此方法返回由format和provider參數指定的當前實例的字符串表示形式。

異常:如果format參數無效,則此方法將給出FormatException。

例:

// C# program to demonstrate the 
// UInt64.ToString(String,  
// IFormatProvider) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // declaring and intializing UInt64 value 
        ulong s1 = UInt64.MaxValue; 
  
        // creating and initializing 
        // the object of CultureInfo 
        CultureInfo provider = new CultureInfo("fr-FR"); 
  
        // declaring and intializing format 
        string format = "D5"; 
  
        // using the method 
        string str = s1.ToString(format, provider); 
  
        // Displaying the details 
        Console.WriteLine("The value is {0}", str); 
        Console.WriteLine("The Format is {0}", format); 
        Console.WriteLine("The Provider is {0}", provider.Name); 
    } 
}
輸出:
The value is 18446744073709551615
The Format is D5
The Provider is fr-FR

參考:




相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 UInt64.ToString() Method in C# with Examples | Set – 1。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。