Check out example codes for "c# generate random int in range". It will help you in understanding the concepts better.
Code Example 1
Random r = new Random();
int rInt = r.Next(0, 100); //for ints
int range = 100;
double rDouble = r.NextDouble()* range; //for doubles
Learn ReactJs, React Native from akashmittal.com