Guest User

Untitled

a guest
Jan 24th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Program
  2. {
  3. static readonly int b = a;
  4. static readonly int a=1;
  5.  
  6. static void Main()
  7. {
  8. Console.WriteLine($"a={a}, b={b}");// a=1 , b=0
  9. }
  10. }
Add Comment
Please, Sign In to add comment