Lucene.Net.RandomHelpers.nextBoolean C# (CSharp) Метод

nextBoolean() публичный статический Метод

public static nextBoolean ( this random ) : bool
random this
Результат bool
        public static bool nextBoolean(this Random random)
        {
            return (random.Next(1, 100) > 50);
        }