Sample code for 30+ languages & platforms
C#

Generating Random Integer in Range

See more PRNG Examples

Demonstrates how to generate random integers in a specified range.

Chilkat C# Downloads

C#
bool success = false;

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

success = false;

Chilkat.Prng fortuna = new Chilkat.Prng();

// Generate random integers between 12 and 24 inclusive
int i;
for (i = 0; i <= 100; i++) {
    Debug.WriteLine(Convert.ToString(fortuna.RandomInt(12,24)));
}