Guest User

Untitled

a guest
Jan 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class MyClass
  2. {
  3. public const int _myCustomConstField = 1;
  4. public readonly int _myCustomReadOnlyField = 1
  5.  
  6. public MyClass()
  7. {
  8. _myCustomConstField = 2; // Invalid statement
  9. _myCustomReadOnlyField = 2; // Valid statement
  10. }
  11. }
Add Comment
Please, Sign In to add comment