How should I generate a random number between 0 and up to 2?
I am currently using the closed static Randomon Random object and calling _random.Next (0, 2), BUT the values are not random ... I see the sequences 0,0,0,1,1,0,0, 0, 1, 1,1
The following is clearly not random. How am I supposed to do this?
Thank you so much
source
share