c# Programming Glossary: significantdigits
Formatting numbers with significant figures in C# http://stackoverflow.com/questions/158172/formatting-numbers-with-significant-figures-in-c-sharp public static double Round this double value int significantDigits int unneededRoundingPosition return RoundSignificantDigits.. return RoundSignificantDigits value significantDigits out unneededRoundingPosition public static string ToString this.. public static string ToString this double value int significantDigits this method will round and then append zeros if needed. i.e...
|