mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
22 lines
435 B
C#
Executable file
22 lines
435 B
C#
Executable file
using System;
|
|
namespace HISP.Security
|
|
{
|
|
class RandomID
|
|
{
|
|
private static int prevId = 0;
|
|
public static int NextRandomId(int randomId=-1)
|
|
{
|
|
int rndmId = 0;
|
|
|
|
if (randomId == -1)
|
|
rndmId = prevId+1;
|
|
else
|
|
rndmId = randomId;
|
|
|
|
if (rndmId >= prevId)
|
|
prevId = rndmId;
|
|
|
|
return rndmId;
|
|
}
|
|
}
|
|
}
|