StringType.FromDecimal 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回与指定的 String
以及可选的数字格式信息相对应的 Decimal
值。
重载
FromDecimal(Decimal) |
此 API 支持产品基础结构,不能在代码中直接使用。 返回与指定的 |
FromDecimal(Decimal, NumberFormatInfo) |
此 API 支持产品基础结构,不能在代码中直接使用。 返回与指定的 |
注解
此类支持 Visual Basic 编译器,不应直接从代码中使用。
FromDecimal(Decimal)
- Source:
- StringType.vb
- Source:
- StringType.vb
- Source:
- StringType.vb
返回与指定的 String
相对应的 Decimal
值。
此 API 支持产品基础结构,不能在代码中直接使用。
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
参数
- Value
- Decimal
必需。 要转换为 Decimal
值的 String
。
返回
与 Value
对应的 String
值。
注解
此类支持 Visual Basic 编译器,不应直接从代码中使用。
适用于
FromDecimal(Decimal, NumberFormatInfo)
- Source:
- StringType.vb
- Source:
- StringType.vb
- Source:
- StringType.vb
返回与指定的 String
和数字格式信息相对应的 Decimal
值。
此 API 支持产品基础结构,不能在代码中直接使用。
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
参数
- Value
- Decimal
必需。 要转换为 Decimal
值的 String
。
- NumberFormat
- NumberFormatInfo
根据区域性定义如何设置数值格式以及如何显示数值的 NumberFormatInfo 对象。
返回
与 Value
对应的 String
值。
注解
此类支持 Visual Basic 编译器,不应直接从代码中使用。