Tagged Questions
21
votes
6answers
11k views
Formatting numbers with significant figures in C#
I have some decimal data that I am pushing into a SharePoint list where it is to be viewed. I'd like to restrict the number of significant figures displayed in the result data based on my knowledge ...
10
votes
9answers
16k views
Round a double to x significant figures after decimal point
If I have a double (234.004223) etc.
I would like to round this to x significant digits after the decimal places in C#
So far I can only find ways to round to x decimal places but this simply removes ...
2
votes
5answers
486 views
String Format % with significant figures
I am using the following code to show percentage using String.Format but I also want to limit the number of significant figures to 2, the two don't seem to play well together. How can I get the two ...
1
vote
5answers
1k views
Preventing double.Parse from removing trailing zeros after decimal place?
When using double.Parse, it seems to like to string away any trailing (insignificant) zeros from the string that I'm converting. I would like double.Parse to keep to places after the decimal. For ...