隨機存取與顯示清單項目
本指南示範如何從 ArrayList 中選擇並顯示隨機字串以回應按鈕點擊。 請依照以下步驟操作:
<code>static Random rnd = new Random();</code>
<code>int randomIndex = rnd.Next(list.Count);</code>
<code>string selectedString = list[randomIndex];</code>
<code>MessageBox.Show(selectedString);</code>
此方法可確保從 ArrayList 中檢索隨機字串並將其顯示在訊息框中。
以上是如何從ArrayList中隨機選擇並顯示一個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!