//生成隨機數函數中從strchar 數組中隨機抽取
//字母區分大小寫
//參數n為生成隨機數的位數,一般取四位
public string RandomNum(int n) //
{
string strchar = "0,1,2,3,4,5,6,7,8,9" ;
string[] VcArray = strchar.Split(',') ;
string VNum = "" ;//由於字符串很短,就不用StringBuilder了
int temp = -1 ; //記錄上次隨機數值,盡量避免產生幾個一樣的隨
機數
//采用一個簡單的算法以保證生成隨機數的不同
Random rand =new Random();
for ( int i = 1 ; i < n+1 ; i++ )
{
if ( temp != -1)
{
rand =new Random(i*temp*unchecked((int)
DateTime.Now.Ticks));
}
//int t = rand.Next(35) ;
int t=rand.Next(10);
if (temp != -1 && temp == t)
{
return RndNum( n);
}
temp = t ;
VNum += VcArray[t];
}
return VNum ;//返回生成的隨機數
}
生成隨機數後,將值賦值給一個Label控件,然後改一下Label背景的顏色,OK了