show/hide this revision's text 2 Forgot to make the functions static

The framework doesn't have a built-in function to round (or truncate, as in your example) to a number of significant digits. One way you can do this, though, is to scale your number so that your first significant digit is right after the decimal point, round (or truncate), then scale back. The following code should do the trick:

static double RoundToSignificantDigits(this double d, int digits){
    double scale = Math.Pow(10, Math.Floor(Math.Log10(d)) + 1);
    return scale * Math.Round(d / scale, digits);
}

If, as in your example, you really want to truncate, then you want:

static double TruncateToSignificantDigits(this double d, int digits){
    double scale = Math.Pow(10, Math.Floor(Math.Log10(d)) + 1 - digits);
    return scale * Math.Truncate(d / scale);
}
show/hide this revision's text 1

The framework doesn't have a built-in function to round (or truncate, as in your example) to a number of significant digits. One way you can do this, though, is to scale your number so that your first significant digit is right after the decimal point, round (or truncate), then scale back. The following code should do the trick:

double RoundToSignificantDigits(this double d, int digits){
    double scale = Math.Pow(10, Math.Floor(Math.Log10(d)) + 1);
    return scale * Math.Round(d / scale, digits);
}

If, as in your example, you really want to truncate, then you want:

double TruncateToSignificantDigits(this double d, int digits){
    double scale = Math.Pow(10, Math.Floor(Math.Log10(d)) + 1 - digits);
    return scale * Math.Truncate(d / scale);
}