[code=C#][/code]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
int s;
Program(int c)
{
s = c;
}
static void Main(string[] args)
{
int c = Console.Read();
Program sa = new Program(c);
Console.WriteLine(sa.s);
Console.ReadLine();
//string a = Console.Read().ToString();
}
}
}
为什么这段代码,执行到 Console.ReadLine();不会暂停呢?
------解决方案--------------------------------------------------------
因为回车确认时会将事件接收,你再多写一个Console.ReadLine();即可