Lucene.Net.RandomHelpers.nextInt C# (CSharp) Method

nextInt() public static method

public static nextInt ( this random ) : int
random this
return int
        public static int nextInt(this Random random)
        {
            return random.Next();
        }

Same methods

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