单项选择题
A.索引器的参数必须是两个或两个以上 B.索引器的参数类型必须是整数型 C.索引器没有名字 D.以上皆是
A.List<int>f=new List<int>() B.List<int>f=new List() C.List f=new List() D.List<int>f=new List<int>
A.void myCallBack(int x)B.int receive(int x)C.string receive(int x)D.不确定的