Conversions.ToString Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Convierte el objeto especificado en un valor String.
Sobrecargas
ToString(Int64) |
Convierte un valor |
ToString(Single, NumberFormatInfo) |
Convierte un valor Single en un valor String, utilizando el formato de número especificado. |
ToString(Double, NumberFormatInfo) |
Convierte un valor Double en un valor String, utilizando el formato de número especificado. |
ToString(Decimal, NumberFormatInfo) |
Convierte un valor Decimal en un valor String, utilizando el formato de número especificado. |
ToString(UInt64) |
Convierte un valor |
ToString(UInt32) |
Convierte un valor |
ToString(Single) |
Convierte un valor Single (número de punto flotante de precisión sencilla) en un valor String. |
ToString(Object) |
Convierte un objeto en un valor String. |
ToString(Int32) |
Convierte un valor entero en un valor String. |
ToString(Int16) |
Convierte un valor |
ToString(Double) | |
ToString(Decimal) | |
ToString(DateTime) | |
ToString(Char) | |
ToString(Byte) | |
ToString(Boolean) |
ToString(Int64)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Convierte un valor Long
en un valor 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
Parámetros
- Value
- Int64
Valor Long
que se va a convertir.
Devoluciones
Representación de String
del valor Long
.
Se aplica a
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
Parámetros
- NumberFormat
- NumberFormatInfo
Formato de número que se va a utilizar, de acuerdo con NumberFormatInfo.
Devoluciones
Representación de cadena del valor Single.
Se aplica a
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
Parámetros
- NumberFormat
- NumberFormatInfo
Formato de número que se va a utilizar, de acuerdo con NumberFormatInfo.
Devoluciones
Representación de cadena del valor Double.
Se aplica a
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
Parámetros
- Value
- Decimal
Valor decimal
que se va a convertir.
- NumberFormat
- NumberFormatInfo
Formato de número que se va a utilizar, de acuerdo con NumberFormatInfo.
Devoluciones
Representación de String
del valor Decimal
.
Se aplica a
ToString(UInt64)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Importante
Esta API no es conforme a CLS.
- Alternativa conforme a CLS
- Microsoft.VisualBasic.CompilerServices.Conversions.ToString(Int64)
Convierte un valor Ulong
en un valor 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
Parámetros
- Value
- UInt64
Valor Ulong
que se va a convertir.
Devoluciones
Representación de String
del valor Ulong
.
- Atributos
Se aplica a
ToString(UInt32)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Importante
Esta API no es conforme a CLS.
- Alternativa conforme a CLS
- Microsoft.VisualBasic.CompilerServices.Conversions.ToString(Int32)
Convierte un valor uint
en un valor 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
Parámetros
- Value
- UInt32
Valor Uint
que se va a convertir.
Devoluciones
Representación de String
del valor Uint
.
- Atributos
Se aplica a
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
Parámetros
Devoluciones
Representación de cadena del valor Single.
Se aplica a
ToString(Object)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Convierte un objeto en un valor 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
Parámetros
- Value
- Object
Objeto que se va a convertir.
Devoluciones
La representación de String
del objeto.
Se aplica a
ToString(Int32)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Convierte un valor entero en un valor 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
Parámetros
- Value
- Int32
Valor int
que se va a convertir.
Devoluciones
Representación de String
del valor int
.
Se aplica a
ToString(Int16)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Convierte un valor Short
en un valor 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
Parámetros
- Value
- Int16
Valor Short
que se va a convertir.
Devoluciones
Representación de String
del valor Short
.
Se aplica a
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
Parámetros
Devoluciones
Representación de cadena del valor Double.
Se aplica a
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
Parámetros
- Value
- Decimal
Valor Decimal
que se va a convertir.
Devoluciones
Representación de String
del valor Decimal
.
Se aplica a
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
Parámetros
- Value
- DateTime
Valor DateTime
que se va a convertir.
Devoluciones
Representación de String
del valor DateTime
.
Se aplica a
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
Parámetros
- Value
- Char
Valor Char
que se va a convertir.
Devoluciones
Representación de String
del valor Char
.
Se aplica a
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
Parámetros
- Value
- Byte
Valor Byte
que se va a convertir.
Devoluciones
Representación de String
del valor Byte
.
Se aplica a
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
Parámetros
- Value
- Boolean
Valor Boolean
que se va a convertir.
Devoluciones
Representación de String
del valor Boolean
.