fBaseXtensions.FunkyBaseExtension.Difference C# (CSharp) Method

Difference() static private method

static private Difference ( float A, float B ) : float
A float
B float
return float
        internal static float Difference(float A, float B)
        {
            if (A > B)
                return A - B;

            return B - A;
        }