Random 클래스 – 난수생성기 난수(random number) : 랜덤수.규칙적이지 않게 나열되는 숫자.뷔르 규칙으로 무작위로 구성되기 때문에 사람이 예측할 수 없는 특징이 있다.varrand=new Random();Random rand=new Random();정수(integer)반구상의 난수 생성 rand. Next();0~100간 정수 생성 rand. Next(101);50~100까지의 정수 생성 rand. Next(50,101);0에서 1사이의 실제 수치(floating point values)생성 rand. NextDouble(예)Windows 5fidfrivle(예)vorm EventArgs e){Random n=new Random();for(int i=0;i<5;i++)listBox1.Items.Add(n.Next(1,46);//1~45의 난수 생성, 중복 가능}#난수, #Random