Tests.FizzBuzzPrinter.IsBuzz C# (CSharp) Method

IsBuzz() static private method

static private IsBuzz ( int i ) : bool
i int
return bool
        static bool IsBuzz(int i)
        {
            return (i % 5 == 0);
        }