14 lines
261 B
C#
14 lines
261 B
C#
using System;
|
|
|
|
namespace 电子展板.Utility.Other
|
|
{
|
|
public class RandomUtils
|
|
{
|
|
public static int GetRandomInt(int start, int end)
|
|
{
|
|
Random rand = new Random();
|
|
return rand.Next(start, end);
|
|
}
|
|
}
|
|
}
|