本帖最后由 mosuge7 于 2013-4-17 13:41 编辑
Random r = new Random();
int step = 0;
step = r.Next(1, 7);
//求大神 解释一下前面 r.Next(1,7) ,这里Next是什么东东?
ConsoleKeyInfo rec = Console.ReadKey(true);//ConsoleKeyInfo是什么类型啊?
//下面的也都解释下哈,重点是 词 本身的意思。。
if (rec.Key == ConsoleKey.Tab)
{
ConsoleKeyInfo aa = Console.ReadKey();
if (aa.Key == ConsoleKey.F1)
{
step = ReadInt(1, 100);
}
}
|