热门
最新
红包
立Flag
投票
同城
我的
发布
accept wrong answer
5 年前
trueqq_46444253
今天在微博热搜上看到了花千骨,感觉一下子就回到了15年那个躁动的夏天,那是的我还是初二的学生,那时候的自己似乎更爱思考,比现在的自己更像一个少年。
加油吧,坚持就是胜利✌
下一条:
请问,输出结果是什么public class University{ const int MAX = 10; private string[] name = new string[MAX]; public string this[ int index ] { get { if (index >= 0 && index < MAX) return name[index]; else return name[0]; } set { if (index >= 0 && index < MAX) name[index] = value; } }}class Program { static void Main() { University un=new University(); un[0] = "东北大学"; un[1] = "辽宁大学"; un[2] = "大连理工大学"; Console.WriteLine(un[2]); }}
立即登录