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

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

public static nextInt ( this random ) : int
random this
Результат int
        public static int nextInt(this Random random)
        {
            return random.Next();
        }

Same methods

RandomHelpers::nextInt ( this random, int maxValue ) : int