cs0191.cs 137 B

123456789101112
  1. // cs0191: can not assign to readonly variable outside constructor
  2. // Line: 8
  3. class X {
  4. readonly int a;
  5. void Y ()
  6. {
  7. a = 1;
  8. }
  9. }