以下类MyClass的属性count属于()属性.classMyClass{inti;intcount{get{returni;}}}
A. 只读
B. 只写
C. 可读写
D. 不可读不可写
查看答案
类MyClass中,下列哪条语句定义了一个只读的属性Count?
A. privateintCount;
B. privateintcount;publicintCount{get{returncount;}}
C. publicreadonlyintCount;
D. publicreadonlyintCount{get{returncount;}set{count=value;}}
可以为索引器指定()索引参数
A. 只能一个
B. 一个或多个
C. 只能两个或多于两个
D. 以上说法都不对
.在C#中属性常用的访问修饰符是
A. new
B. static
C. public
D. virtual
classPropertyClass{privatestringSexType;publicstringSex{get{returnSexType;}set{if(value=="男")SexType="先生";elseif(value=="女")SexType="女士";elseSexType="数据错误";}}}classProgram{staticvoidMain(string[]args){PropertyClasspCls=newPropertyClass();pCls.Sex="男";Console.WriteLine(pCls.Sex);Console.ReadKey();}}
A. 先生
B. 女士
C. 数据错误
D. 无法运行