Ask your own question, for FREE!
MIT 6.01SC Introduction to Electrical Engineering and Computer Science I 18 Online
OpenStudy (anonymous):

hello could someone please brief me on using Random on C#

OpenStudy (anonymous):

Well Random is supposed to generate a random number in c#. U have to use the Random class to create an object of the class and then use next method to get a random number. public void rndFxn() { Random x = new Random(); float q = x.Next(); double r = x.Next(100); int s = x.Next(5,10);//You can choose double, float etc. // p will give u the value. textBox1.Text = s.ToString(); // this is for gui with a textbox Console.WriteLine(s); // this is if u are making a console app }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!