Skip to content
Ricky Setiawan edited this page Nov 16, 2020 · 4 revisions

The simple way to use

var rng = new Xoroshiro128plus();
var randomInt = rng.NextInt();

OR

IRNG rng = new Xoroshiro128plus();
var randomInt = rng.NextInt();
Clone this wiki locally