문제

How do I format a Double to String:

1715 --> 1.7K
500 --> 0.5k
도움이 되었습니까?

해결책 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";

다른 팁

You can do it like this:

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

Here is the fiddle

Further reading

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top