sorry. this is C#. i am newby in this and dont know much in this. i am trying my best :)
Main Topics
Browse All TopicsHi guys, i have one question, how can i add random to this function here below? is it poseble to add the random somewhere there inside? if so? please help asap, it is 500 pt for this. i need it fast, or do you need something more to this can be done?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
int RandomNumber = RandomClass.Next();
The value of RandomNumber will, therefore, be assigned a random whole number between 1 and 2,147,483,647.
int RandomNumber = RandomClass.Next(4, 14);
The value of RandomNumber will, therefore, be assigned a random whole number between 4 and 14.
int RandomNumber = RandomClass.Next(100);
The value of RandomNumber will, therefore, be assigned a random whole number between 0 and 100.
double RandomNumber = RandomClass.NextDouble();
As well as returning random integers, the Random class can also return floating point numbers. The NextDouble method returns a random number as a Double. The random number's value is always greater or equal to 0.0, and less than 1.0:
Hi there,
Have a look at this link, the System.Random class is available in .NET 1.1 as well: http://msdn.microsoft.com/
There are examples too, as usually.
Business Accounts
Answer for Membership
by: BeholdasonPosted on 2009-01-10 at 09:49:37ID: 23344519
If you could remind me what programming language you are using i would be able to answer your question