uzumaxy

Google QA

Jul 14th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.09 KB | None | 0 0
  1. public void Swap(ref int obj1, ref int obj2)
  2. {
  3.     int temp=obj1;
  4.     obj1=obj2;
  5.     obj2=temp;
  6. }
Add Comment
Please, Sign In to add comment