mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
27 lines
636 B
C#
Executable file
27 lines
636 B
C#
Executable file
using System.Threading;
|
|
|
|
namespace HISP.Security
|
|
{
|
|
public class RandomID
|
|
{
|
|
private static Mutex rndmIdMutex = new Mutex();
|
|
private static int prevId = 0;
|
|
public static int NextRandomId(int randomId=-1)
|
|
{
|
|
int rndmId = 0;
|
|
rndmIdMutex.WaitOne();
|
|
|
|
if (randomId == -1)
|
|
rndmId = prevId+1;
|
|
else
|
|
rndmId = randomId;
|
|
|
|
if (rndmId >= prevId)
|
|
prevId = rndmId;
|
|
|
|
rndmIdMutex.ReleaseMutex();
|
|
|
|
return rndmId;
|
|
}
|
|
}
|
|
}
|