C#之使用随机数
Posted tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#之使用随机数相关的知识,希望对你有一定的参考价值。
1.C#自带随机数函数
using System;
System.Random ran = new System.Random();
int n = ran.Next(100, 1000);//产生100到999之间的随机整数
Debug.Log (n);
2.Unity自带随机数函数
using UnityEngine;
float f = UnityEngine.Random.value;//产生0到1之间的随机数
Debug.Log(f);
以上是关于C#之使用随机数的主要内容,如果未能解决你的问题,请参考以下文章