ipavlo

Boxing-unboxing

Sep 8th, 2021 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.11 KB | None | 0 0
  1. void Bar()
  2. {
  3.    int a = 0;
  4.    Foo(a);
  5.    Console.Writeline(a);
  6. }
  7.  
  8. static void Foo(object o)
  9. {
  10.    o = 123;
  11. }
Add Comment
Please, Sign In to add comment