A. 对 B. 错
A. private int Count; B. private int count; public int Count{ get{return count;} } C. public readonly int Count; D. public readonly int Count { get{ return count;} set{count = value;} }
A. 1 B. 3 C. 2 D. 4