BinaryFileVisualizer.Model.IntegerCeiling C# (CSharp) Method

IntegerCeiling() private static method

private static IntegerCeiling ( long x, long y ) : long
x long
y long
return long
        private static long IntegerCeiling(long x, long y)
        {
            return (x + y - 1) / y;
        }
    }