Skip to content

Instantly share code, notes, and snippets.

@kuchikios
Last active December 31, 2015 20:08
Show Gist options
  • Save kuchikios/81216c6685df457bb84a to your computer and use it in GitHub Desktop.
Save kuchikios/81216c6685df457bb84a to your computer and use it in GitHub Desktop.
Swap
static void Swap<TValue>( ref TValue a, ref TValue b )
{
var c = a; a = b; b = c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment