Files
PL_JusticeBot/Utilities/IdChecker.cs
Дмитрий Шиманский dde8b38520 updated
2023-11-09 00:24:18 +03:00

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;
}
}
}