class Program
{
static void Main(string[] args)
{
object o = new object();
int i;
Int32.TryParse(Console.ReadLine(), out i);
o = i > 3 ? null : 3.5;
}
}
当然不是在控制台程序中,我在这里只是写出个模拟。然后系统报出了一个这样的错误。