I don't know how to use RandomNumberGenerator class.
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Can any one help to me in using RandomNumberGenerator class member functions. Early response is appreciated.
-
Can any one help to me in using RandomNumberGenerator class member functions. Early response is appreciated.
The class RandomNumberGenerator is an abstract class - that means that you cannot create instances of this class. You can only create instances of class which extends the RandomNumberGenerator class. Then it should be no problem to use the member functions. (if you meant something different please tell and give some more info)
-
Can any one help to me in using RandomNumberGenerator class member functions. Early response is appreciated.
Use System.Random instead.