Click Here to Register for Free

Join Dotnetcodes DotnetCodes.com is online Discussion Forum for Software professionals . It lets you find friends around the world and Create professional network that share similar interests as you. Get help on ur projects by industry specialists. Also get answers to all ur technical/placement related querries.Get an edge over others.
Already MemberClick here to login
ASP.net MVC Interview Questions Answers Interview Questions
Whats New in ASP.NET 4.0 Part 2 Articles
SharePoint 2010 interview Questions Answers Interview Questions
Get Started Developing for Android Apps with Eclipse Articles
.Net framework 4.0 Interview Questions Answers Interview Questions
SQL server reporting services Interview Questions (SSRS) part 1 Articles
Serial Number in SSRS Articles
Explaining SDLC -System Development Life Cycle Articles
ASP .Net Page Life cycle Articles
How to Print a Crystal Report direct to printer Articles
Sql Server Database Backup and Restore through C# Source Codes
Difference between User Control and Custom Control Articles
Sql Server Interview Questions part 1 Interview Questions
cross page posting in ASP.Net Interview Questions
Abstract Classes vs. Interfaces Articles
Submit Articles | More Articles..

Random number generator function in C#

Posted By: rakesh On:2/8/2013 4:27:02 AM in:Source Codes Category:CSharp Hits:530
Below are the code to generate Random number

using
System;


namespace ConsoleApplication1
{
   
class Program
   
{
       
static void Main(string[] args)
       
{
           
int[] theArray = new int[1000];
           
int i = 0;
           
while (i < theArray.Length)
           
{
                theArray
[i] = ++i;
           
}


           
// Work backward, swapping the last unswapped entry with any of the
           
// remaining unswapped entries - including possibly itself.
           
// This is really just slightly complicated way of doing a random 'draw',
           
// which is exactly what is required to perform a shuffle.
           
// Please note that the Random generator does not produce random numbers - it
           
// produces a deterministic sequence of numbers with statistical properties similar
           
// or at best equivalent to random numbers. For 'real' randomness, please turn
           
// to System.Security.Cryptography.RNGCryptoServiceProvider.
           
Random r = new Random();
           
while (i > 1)
           
{
               
int j = r.Next(i);
               
int t = theArray[--i];
                theArray
[i] = theArray[j];
                theArray
[j] = t;
           
}


           
for (i = 0; i < theArray.Length; ++i)
           
{
               
Console.WriteLine(theArray[i].ToString());
           
}
       
}
   
}
}
comments powered by Disqus
User Profile
Rakesh Sinha
Team Lead
Delhi , INDIA
Email :You must Log In to access the contact details.
Latest Post from :rakesh
How to Retrieve Data in Excel from Sql Server
View: 69 | Submitted on: 5/20/2013 12:38:53 AM
Html5 interview questions and answers
View: 2641 | Submitted on: 4/24/2013 11:43:03 PM
Razor View Engine Interview Questions Answers
View: 625 | Submitted on: 4/24/2013 11:38:04 PM
How to prevent .NET DLL to be decompiled
View: 1017 | Submitted on: 3/28/2013 9:52:41 AM
What is CODE Access security
View: 116 | Submitted on: 3/28/2013 9:50:17 AM
Submit Articles | All Post of This User..

All rights reserved to dotnetcodes. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks.
Best viewed at 1024 x 768 resolution with Internet Explorer 5.0 or Mozila Firefox 3.5 or Google Crome and higher