Question

How do I format a Double to String:

1715 --> 1.7K
500 --> 0.5k
Was it helpful?

Solution 2

Read for example about Numeric Format String, then use with proper value:

double value = 1715.0;
string result = (value / 1000.0).ToString("F1", CultureInfo.InvariantCulture) + "K";

OTHER TIPS

You can do it like this:

 Console.WriteLine("{0:0.0}K", 1715/1000d);

Here is the fiddle

Further reading

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top