CC#•Created by kelteq on 3/27/2025 in #help array exercise
i want to generate numbers that are unique and dont duplicate int[] x = new int[10];
for (int i = 0; i < x.Length; i++)
{
x[i] = Random.Shared.Next(15);
Console.WriteLine($"{x[i]}");
}
any way to do this without built in methods?