mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-08 19:39:27 +02:00
14 lines
332 B
C#
14 lines
332 B
C#
namespace DiscordApp.Utilities
|
|
{
|
|
public class IdChecker
|
|
{
|
|
public static void IdLenghtIsLower(out int id)
|
|
{
|
|
Random random = new();
|
|
id = random.Next(00001, 99999);
|
|
while (id.ToString().Length < 5) { id = random.Next(00001, 99999); }
|
|
return;
|
|
}
|
|
}
|
|
}
|