随机访问和显示列表项
本指南演示了如何从 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中文网其他相关文章!