Guest User

Untitled

a guest
Jul 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //How could you make this code more efficient?
  2.  
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. int foo = 123;
  8. object bar = foo;
  9.  
  10. Console.WriteLine(foo + " - " + (int)bar);
  11. }
  12. }
Add Comment
Please, Sign In to add comment