Vb.net Random Number generator generating same number many times
You’re using a new instance of System.Random every time. Random is seeded by the current time. Initializes a new instance of the Random class, using a time-dependent default seed value Reference Since you are creating new instances in very quick succession, they get the same seed. Instead, you should use the same instance of Random, … Read more