单项选择题
A.internal B.protected C.private D.public E.internal protected
接口IMyInterface中只包含一个属性MyName.该属性满足: ...
接口IMyInterface中只包含一个属性MyName.该属性满足: 公有 可读可写 字符串类刑 则该接口的定义应为()
A.interface MyInterface{string MyName{get;set;}} B.interface MyInterface{int MyName{get;set;}} C.interface MyInterface{string MyName{get{}set{}} D.interface MyInterface{string MyName{get{};set{};}
为了创建一个位标记类型,应在枚举类型的定义前附加()属性。A.[Bits]B.[Tags]C.[Int32]D...
单项选择题为了创建一个位标记类型,应在枚举类型的定义前附加()属性。
A.[Bits] B.[Tags] C.[Int32] D.[Flags]
枚举类型MyEnum的基础类型为int,我们可以使用()方法返回任一枚举成员的值。A.GetHashCodeB...
单项选择题枚举类型MyEnum的基础类型为int,我们可以使用()方法返回任一枚举成员的值。
A.GetHashCode B.Typeof C.Parse D.ToString