1, Console.ForegroundColor=consolecolor.颜色 //设置前景色
Console.ResetColor(); //恢复前景色和背景色
2, console.Readkey(true); //用户按下的键,不会在窗口中显示
3, Random r=new Random();
r.Next(min,max); //产生一个随机数,而且min<=随机数 <max
4, msg=string.Format(输出的内容,可以含占位符); //使用变量输出含占位符的字符串
5, //原来就是这样制作BUG或后门的.
ConsoleKeyInfo rec = Console.ReadKey(true);
if (rec.Key == ConsoleKey.Tab)
{
ConsoleKeyInfo cc = Console.ReadKey(true);
if (cc.Key == ConsoleKey.F1)
{
step = ReadInt(1, 100);
}
}
else
{
step = r.Next(1, 7); } |