cs0200.cs 177 B

123456789101112131415
  1. // cs0200: can not assign to property X.P -- it is readonly
  2. // line: 12
  3. class X {
  4. static int P {
  5. get {
  6. return 1;
  7. }
  8. }
  9. static int Main ()
  10. {
  11. P = 10;
  12. return 1;
  13. }
  14. }