30秒学会 C# 片段 · 2018年2月27日

30秒学会 C# 片段 – RandomIntegerInRange

Returns a random integer in the specified range.

Use Random.Next() to generate an integer in the desired range.

代码实现

public static partial class _30s 
{
  public static int RandomIntegerInRange(int min, int max) 
  {
    return new Random().Next(min, max);
  }
}

使用样例

_30s.RandomIntegerInRange(0, 5); // 2