EN
C#/.NET - convert decimal to string
11
points
In C#/.NET number string can be created in few ways.
1. ToString example
decimal value = 3.14m;
string text = value.ToString(); // or 3.14m.ToString()
Console.WriteLine(text); // 3.14mOutput:
3.142. Convert.ToString example
decimal value = 3.14m;
string text = Convert.ToString(value);
Console.WriteLine(text); // 3.14m;Output:
3.143. string.Format example
decimal value = 3.14m;
string text = string.Format("{0}", value);
Console.WriteLine(text); // 3.14m;Output:
3.144. String interpolation example
decimal value = 3.14m;
string text = $"{value}";
Console.WriteLine(text); // 3.14m;Output:
3.14Note: this feature available is in C# 6 and later versions
5. Summing string and number example (empty string)
decimal value = 3.14m;
string text = "" + value;
// string text = value + "";
// string text = string.Empty + value;
// string text = value + string.Empty;
Console.WriteLine(text); // 3.14m;Output:
3.146. StringBuilder example
decimal value = 3.14m;
string text = new StringBuilder().Append(value).ToString();
Console.WriteLine(text); // 3.14m;Output:
3.147. TypeConverter.ConvertTo example
TypeConverter converter = TypeDescriptor.GetConverter(typeof(decimal));
decimal value = 3.14m;
string text = (string)converter.ConvertTo(value, typeof(string));
Console.WriteLine(text); // 3.14m;Output:
3.14