C# 中的 Decimal.ToString() 方法用于将此实例的数值转换为其等效的字符串表示形式。
用法
以下是语法 -
public override string ToString ();
示例
现在让我们看一个实现 Decimal.ToString() 方法的例子 -
using System;
public class Demo{
public static void Main(){
decimal d = 3444.787m;
string str = d.ToString();
Console.WriteLine("String = "+str);
}
}
输出
这将产生以下输出 -
String = 3444.787
示例
让我们看另一个例子 -
using System;
public class Demo{
public static void Main(){
decimal d = 100;
string str = d.ToString();
Console.WriteLine("String = "+str);
}
}
输出
这将产生以下输出 -
String = 100
相关用法
- C# Decimal.ToSingle()用法及代码示例
- C# Decimal.ToSByte()用法及代码示例
- C# Decimal.ToDouble()用法及代码示例
- C# Decimal.ToOACurrency()用法及代码示例
- C# Decimal.ToInt64()用法及代码示例
- C# Decimal.ToInt16()用法及代码示例
- C# Decimal.ToInt32()用法及代码示例
- C# Decimal.ToUInt64()用法及代码示例
- C# Decimal.ToUInt16()用法及代码示例
- C# Decimal.ToUInt32()用法及代码示例
- C# Decimal.ToByte()用法及代码示例
- C# Decimal.Truncate()用法及代码示例
- C# Decimal.FromOACurrency()用法及代码示例
- C# Decimal.GetBits()用法及代码示例
- C# Decimal.Remainder()用法及代码示例
- C# Decimal.GetTypeCode用法及代码示例
- C# Decimal.Negate()用法及代码示例
- C# Decimal.GetHashCode()用法及代码示例
- C# Decimal.Subtract()用法及代码示例
- C# Decimal.CompareTo()用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 Decimal.ToString() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。