【简答题】//改错题【要求:只能修改一行】 //要求能通过编译且不能改变程序的功能和作用 using System; namespace Examples { class Person { public string Name { get; private set; } public Person[string name] { Name = name; } } class Program { static ...
【简答题】//改错题【要求:只能修改一行】 //要求能通过编译且不能改变程序的功能和作用 using System; namespace Examples { class Program { void Main() { int x = 3; while (x > 0) { Console.WriteLine("x: {0}", x); x--; } Console.WriteLine("Out of lo...