nt len=array.Count;
Random rand=new Random(len);
int r=rand.Next();
int data=array[r];
array.RemoveAt[r];
循环此程序,直到取完需要的个数
补充:C#是微软公司发布的一种面向对象的、运行于.NET Framework之上的高级程序设计语言。并定于在微软职业开发者论坛(PDC)上登台亮相。C#是微软公司研究员Anders Hejlsberg的最新成果。C#看起来与Java有着惊人的相似;它包括了诸如单一继承、接口、与Java几乎同样的语法和编译成中间代码再运行的过程。但是C#与Java有着明显的不同,它借鉴了Delphi的一个特点,与COM(组件对象模型)是直接集成的,而且它是微软公司 .NET windows网络框架的主角。
1.需要用到 Random类
2.示例代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
ArrayList lst = new ArrayList() { 11, 22, 33, 44 };
Random r = new Random();
//随机访问10次lst
int count = 0;
while (count++ <= 10)
{
Console.WriteLine(lst[r.Next(lst.Count)]);
}
Console.Read();
}
}
}
3.运行结果如下:
希望对你有帮助~
int len=array.Count;
Random rand=new Random(len);
int r=rand.Next();
int data=array[r];
array.RemoveAt[r];
循环此程序,直到取完需要的个数,你非用线程也可以,没必要。
另外,团IDC网上有许多产品团购,便宜有口碑
int len=array.Count;
Random rand=new Random(len);
int r=rand.Next();
int data=array[r];
array.RemoveAt[r];
int len=10;
ArrayList list = new ArrayList(len);
Random rad=new Random ();
object obj= list[rad.Next(0, len-1)];