Utils.

IsZero(double) Method

Summary

IsZero - Returns whether or not the double is "close" to 0. Same as AreClose(double, 0), but this is faster.
Namespace
MahApps.Metro.Controls
Containing Type
Utils

Syntax

public static bool IsZero(this double value)

Parameters

Name Type Description
value double The double to compare to 0.

Return Value

Type Description
bool bool - the result of the AreClose comparision.