Currently making a simple game in C# and I have my object appearing in the middle of the screen, now I have made a list for that object but was wondering how do I make the object appear like 10 times randomly on the screen? I am guessing a for each loop of some kind?
object1 = new List<Gem>();
object2 = new List<Gem>();
Above is just where I have made a list for that class where the object is stored. So again just trying to figure out how to make this object appear in random positions on the screen x10.