All C# extension methods for type double
-
Standard Deviation LINQ extension method
Typical standard deviation formula set in LINQ fluent syntax. For when Average, Min, and Max just aren't enough information.
-
ToString
Returns a formatted string on a nullable double
-
Get Percentage
Gets the specified percentage of the given value.
-
ToLocalCurrencyString
Convert a double to a string formatted using the local currency settings.
-
ToSpecificCurrencyString
Convert a double to a string formatted using the culture settings (string representation) passed into the procedure.
-
NullableSum
Takes an array of nullable values and sums them up. Can be easily replaced with int?
-
DisplayDouble
Converts a Double to a String with precision
-
ToLocalCurrencyString
Convert a double to a string formatted to the specified CultureInfo or the Default CultureInfo if null.