Members
| Name | Description |
|---|---|
| GetRandom() |
GetRandom with no parameters.
|
| GetRandom(Int32) |
These random methods are from Eli Robillards blog - kudos for the work :-)
http://weblogs.asp.net/erobillard/archive/2004/05/06/127374.aspx
Get a Random object which is cached between requests.
The advantage over creating the object locally is that the .Next
call will always return a new value. If creating several times locally
with a generated seed (like millisecond ticks), the same number can be
returned.
|