how to get random float in C# code example
Example: c# random float between two numbers
//Notice that I think in order to use System.Random you need to import System (using System;)
static float NextFloat(float min, float max){
System.Random random = new System.Random();
double val = (random.NextDouble() * (max - min) + min);
return (float)val;
}