C# 產生4個0~15的亂數整數,並將4個亂數轉換成一組字串

C# 產生4個0~15的亂數整數,並將4個亂數轉換成一組字串

C# 產生40~15的亂數整數,並將4個亂數轉換成一組字串


 

Random R = new Random();//AAOl

this.txt_InterfereCode.Text=“”;

for (int i = 0; i < 4; i++)

{

int j = R.Next(0, 16);//0~15

this.txt_InterfereCode.Text += Convert.ToString(j, 16);

}

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *