示例#1
0
文件: Random.cs 项目: mangod9/runtime
            public override float NextSingle()
            {
                float result = LocalRandom.NextSingle();

                AssertInRange(result);
                return(result);
            }
示例#2
0
 public override float NextSingle() => LocalRandom.NextSingle();