摘要:
publicList<int> CalculateRandom(int maxValue,int num){ List<int> result = new List<int>(); Random ran = new Random(); bool isOK = false; while (!isOK) { int key = ran.Next(0, maxValu... 阅读全文
posted @ 2010-05-27 10:52
风干的记忆
阅读(528)
评论(5)
推荐(0)