StringType.FromDecimal Metodo

Definizione

Restituisce un String valore che corrisponde a informazioni sul formato di numeri specificato Decimal e facoltativo.

Overload

Nome Descrizione
FromDecimal(Decimal)

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

Restituisce un String valore che corrisponde all'oggetto specificato Decimal.

FromDecimal(Decimal, NumberFormatInfo)

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

Restituisce un String valore che corrisponde a un valore specificato Decimal e a informazioni sul formato numerico.

Commenti

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

FromDecimal(Decimal)

Restituisce un String valore che corrisponde all'oggetto specificato Decimal.

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 Function FromDecimal (Value As Decimal) As String
Public Shared Function FromDecimal (Value As Decimal) As String

Parametri

Value
Decimal

Required. Decimal per eseguire la conversione in un String valore.

Valori restituiti

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)

Restituisce un String valore che corrisponde a un valore specificato Decimal e a 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);
static member FromDecimal : decimal * System.Globalization.NumberFormatInfo -> string
Public Function FromDecimal (Value As Decimal, NumberFormat As NumberFormatInfo) As String
Public Shared Function FromDecimal (Value As Decimal, NumberFormat As NumberFormatInfo) As String

Parametri

Value
Decimal

Required. Decimal per eseguire la conversione in un String valore.

NumberFormat
NumberFormatInfo

Oggetto NumberFormatInfo che definisce la formattazione e la visualizzazione dei valori numerici, a seconda delle impostazioni cultura.

Valori restituiti

Valore String corrispondente a Value.

Commenti

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

Si applica a