Tests.FizzBuzzPrinter.IsBuzz C# (CSharp) Méthode

IsBuzz() static private méthode

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