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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将 Long
值转换为 String 值。
public:
static System::String ^ ToString(long Value);
public static string ToString (long Value);
static member ToString : int64 -> string
Public Shared Function ToString (Value As Long) As String
参数
- Value
- Int64
要转换的 Long
值。
返回
该 String
值的 Long
表示形式。
适用于
ToString(Single, NumberFormatInfo)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将 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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将 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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将对象转换为 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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将整数值转换为 String 值。
public:
static System::String ^ ToString(int Value);
public static string ToString (int Value);
static member ToString : int -> string
Public Shared Function ToString (Value As Integer) As String
参数
- Value
- Int32
要转换的 int
值。
返回
该 String
值的 int
表示形式。
适用于
ToString(Int16)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
将 Short
值转换为 String 值。
public:
static System::String ^ ToString(short Value);
public static string ToString (short Value);
static member ToString : int16 -> string
Public Shared Function ToString (Value As Short) As String
参数
- Value
- Int16
要转换的 Short
值。
返回
该 String
值的 Short
表示形式。
适用于
ToString(Double)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
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
表示形式。