Conversions.ToString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的物件轉換成 String 值。
多載
ToString(Int64) |
將 |
ToString(Single, NumberFormatInfo) | |
ToString(Double, NumberFormatInfo) | |
ToString(Decimal, NumberFormatInfo) | |
ToString(UInt64) |
將 |
ToString(UInt32) |
將 |
ToString(Single) | |
ToString(Object) |
將物件轉換成 String 值。 |
ToString(Int32) |
將整數值轉換成 String 值。 |
ToString(Int16) |
將 |
ToString(Double) | |
ToString(Decimal) | |
ToString(DateTime) | |
ToString(Char) | |
ToString(Byte) | |
ToString(Boolean) |
ToString(Int64)
ToString(Single, NumberFormatInfo)
public:
static System::String ^ ToString(float Value, System::Globalization::NumberFormatInfo ^ NumberFormat);
public static string ToString (float Value, System.Globalization.NumberFormatInfo? NumberFormat);
public static string ToString (float Value, System.Globalization.NumberFormatInfo NumberFormat);
static member ToString : single * System.Globalization.NumberFormatInfo -> string
Public Shared Function ToString (Value As Single, NumberFormat As NumberFormatInfo) As String
參數
- NumberFormat
- NumberFormatInfo
依據 NumberFormatInfo,所要使用的數字格式。
傳回
Single 值的表示字串。
適用於
ToString(Double, NumberFormatInfo)
public:
static System::String ^ ToString(double Value, System::Globalization::NumberFormatInfo ^ NumberFormat);
public static string ToString (double Value, System.Globalization.NumberFormatInfo? NumberFormat);
public static string ToString (double Value, System.Globalization.NumberFormatInfo NumberFormat);
static member ToString : double * System.Globalization.NumberFormatInfo -> string
Public Shared Function ToString (Value As Double, NumberFormat As NumberFormatInfo) As String
參數
- NumberFormat
- NumberFormatInfo
依據 NumberFormatInfo,所要使用的數字格式。
傳回
Double 值的表示字串。
適用於
ToString(Decimal, NumberFormatInfo)
public:
static System::String ^ ToString(System::Decimal Value, System::Globalization::NumberFormatInfo ^ NumberFormat);
public static string ToString (decimal Value, System.Globalization.NumberFormatInfo? NumberFormat);
public static string ToString (decimal Value, System.Globalization.NumberFormatInfo NumberFormat);
static member ToString : decimal * System.Globalization.NumberFormatInfo -> string
Public Shared Function ToString (Value As Decimal, NumberFormat As NumberFormatInfo) As String
參數
- Value
- Decimal
要進行轉換的 decimal
值。
- NumberFormat
- NumberFormatInfo
依據 NumberFormatInfo,所要使用的數字格式。
傳回
String
值的 Decimal
表示。
適用於
ToString(UInt64)
重要
此 API 不符合 CLS 規範。
將 Ulong
值轉換成 String 值。
public:
static System::String ^ ToString(System::UInt64 Value);
[System.CLSCompliant(false)]
public static string ToString (ulong Value);
[<System.CLSCompliant(false)>]
static member ToString : uint64 -> string
Public Shared Function ToString (Value As ULong) As String
參數
- Value
- UInt64
要進行轉換的 Ulong
值。
傳回
String
值的 Ulong
表示。
- 屬性
適用於
ToString(UInt32)
重要
此 API 不符合 CLS 規範。
將 uint
值轉換成 String 值。
public:
static System::String ^ ToString(System::UInt32 Value);
[System.CLSCompliant(false)]
public static string ToString (uint Value);
[<System.CLSCompliant(false)>]
static member ToString : uint32 -> string
Public Shared Function ToString (Value As UInteger) As String
參數
- Value
- UInt32
要進行轉換的 Uint
值。
傳回
String
值的 Uint
表示。
- 屬性
適用於
ToString(Single)
public:
static System::String ^ ToString(float Value);
public static string ToString (float Value);
static member ToString : single -> string
Public Shared Function ToString (Value As Single) As String
參數
傳回
Single 值的表示字串。
適用於
ToString(Object)
將物件轉換成 String 值。
public:
static System::String ^ ToString(System::Object ^ Value);
public static string ToString (object Value);
public static string? ToString (object? Value);
static member ToString : obj -> string
Public Shared Function ToString (Value As Object) As String
參數
- Value
- Object
要轉換的物件。
傳回
物件的 String
表示。
適用於
ToString(Int32)
ToString(Int16)
ToString(Double)
public:
static System::String ^ ToString(double Value);
public static string ToString (double Value);
static member ToString : double -> string
Public Shared Function ToString (Value As Double) As String
參數
傳回
Double 值的表示字串。
適用於
ToString(Decimal)
public:
static System::String ^ ToString(System::Decimal Value);
public static string ToString (decimal Value);
static member ToString : decimal -> string
Public Shared Function ToString (Value As Decimal) As String
參數
- Value
- Decimal
要進行轉換的 Decimal
值。
傳回
String
值的 Decimal
表示。
適用於
ToString(DateTime)
public:
static System::String ^ ToString(DateTime Value);
public static string ToString (DateTime Value);
static member ToString : DateTime -> string
Public Shared Function ToString (Value As DateTime) As String
參數
- Value
- DateTime
要進行轉換的 DateTime
值。
傳回
String
值的 DateTime
表示。
適用於
ToString(Char)
public:
static System::String ^ ToString(char Value);
public static string ToString (char Value);
static member ToString : char -> string
Public Shared Function ToString (Value As Char) As String
參數
- Value
- Char
要進行轉換的 Char
值。
傳回
String
值的 Char
表示。
適用於
ToString(Byte)
public:
static System::String ^ ToString(System::Byte Value);
public static string ToString (byte Value);
static member ToString : byte -> string
Public Shared Function ToString (Value As Byte) As String
參數
- Value
- Byte
要進行轉換的 Byte
值。
傳回
String
值的 Byte
表示。
適用於
ToString(Boolean)
public:
static System::String ^ ToString(bool Value);
public static string ToString (bool Value);
static member ToString : bool -> string
Public Shared Function ToString (Value As Boolean) As String
參數
- Value
- Boolean
要進行轉換的 Boolean
值。
傳回
String
值的 Boolean
表示。