Skip to content

Instantly share code, notes, and snippets.

@fresky
Created August 24, 2012 10:02
Show Gist options
  • Save fresky/3448615 to your computer and use it in GitHub Desktop.
Save fresky/3448615 to your computer and use it in GitHub Desktop.
Assign value to itself by ++
int y = 1;
y = y++;
Console.WriteLine(y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment