I haven't seen any real documentation on using the Random() method.. I am wondering, should I declare a single Random object at the application level for all clients attached to use or do you just declare a new Random() object in every method you need to generate a random number each time the method is ran? I want to avoid repeat sequences of numbers. The application is a multiuser server.

Hinder