Condividi tramite


StringType.FromDecimal Metodo

Definizione

Restituisce un valore String corrispondente a un valore Decimal specificato, nonché informazioni facoltative sul formato numerico.

Overload

FromDecimal(Decimal)

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

Restituisce un valore String corrispondente al valore Decimal specificato.

FromDecimal(Decimal, NumberFormatInfo)

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

Restituisce un valore String corrispondente a un valore Decimal specificato, nonché informazioni sul formato numerico.

Commenti

Questa classe supporta il compilatore Visual Basic e non deve essere usata direttamente dal codice.

FromDecimal(Decimal)

Source:
StringType.vb
Source:
StringType.vb
Source:
StringType.vb

Restituisce un valore String corrispondente al valore Decimal specificato.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 static System::String ^ FromDecimal(System::Decimal Value);
public static string FromDecimal (decimal Value);
static member FromDecimal : decimal -> string
Public Shared Function FromDecimal (Value As Decimal) As String
Public Function FromDecimal (Value As Decimal) As String

Parametri

Value
Decimal

Obbligatorio. Decimal da convertire in un valore String.

Restituisce

Valore String corrispondente a Value.

Commenti

Questa classe supporta il compilatore Visual Basic e non deve essere usata direttamente dal codice.

Si applica a

FromDecimal(Decimal, NumberFormatInfo)

Source:
StringType.vb
Source:
StringType.vb
Source:
StringType.vb

Restituisce un valore String corrispondente a un valore Decimal specificato, nonché informazioni sul formato numerico.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 static System::String ^ FromDecimal(System::Decimal Value, System::Globalization::NumberFormatInfo ^ NumberFormat);
public static string FromDecimal (decimal Value, System.Globalization.NumberFormatInfo? NumberFormat);
public static string FromDecimal (decimal Value, System.Globalization.NumberFormatInfo NumberFormat);
static member FromDecimal : decimal * System.Globalization.NumberFormatInfo -> string
Public Shared Function FromDecimal (Value As Decimal, NumberFormat As NumberFormatInfo) As String
Public Function FromDecimal (Value As Decimal, NumberFormat As NumberFormatInfo) As String

Parametri

Value
Decimal

Obbligatorio. Decimal da convertire in un valore String.

NumberFormat
NumberFormatInfo

Oggetto NumberFormatInfo che definisce la modalità di formattazione e visualizzazione dei valori numerici, in base alle impostazioni cultura.

Restituisce

Valore String corrispondente a Value.

Commenti

Questa classe supporta il compilatore Visual Basic e non deve essere usata direttamente dal codice.

Si applica a