BCH.BCHTool.gcm C# (CSharp) Method

gcm() private static method

Greatest common multiple (to round up)
private static gcm ( int n, int m ) : int
n int Number to round-up.
m int Multiple to round-up to.
return int
        private static int gcm(int n, int m)
        {
            return ((n + m - 1) / m) * m;
        }