please How can i write a program that user will input the number of question he want and the question will be displayed at random from a group of question using c#.

Recommended Answers

All 2 Replies

Google: Random C#

 Random rnm = new Random();
            return rnm.Next(10);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.