0
If you're going to derive from the Random class and override the methods you've listed, then I'd take a look at the underlying code first.
0
Hi,
Its better to know how to override a method in C#.
to override the NextByte,
define a method like this with virtual keyword in the class you want to use.
public virtual void NextBytes(byte[] buffer)
{
// your code here
}
0
Hi,
Implement method overloading...
Refer: