Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユニークでランダムな8桁の数字を作成する方法を知っている人はいますか?乱数を作成する方法はいくつかありますが、私の要件は一意のものを作成することです。また、8桁の乱数である必要があります。何か案が?
Random rnd = new Random(); int myRandomNo= rnd.Next(10000000, 99999999); // creates a 8 digit random no.