Skip to content

Instantly share code, notes, and snippets.

@dchw
Last active August 29, 2015 13:57
Show Gist options
  • Save dchw/9636330 to your computer and use it in GitHub Desktop.
Save dchw/9636330 to your computer and use it in GitHub Desktop.
Using keywords as variable names
var @null = "HEY";
var @if = "WHAT R U DOIN";
var @object = "PLZ STAHP";
Console.WriteLine(String.Format("{0} {1} {2}", @null, @if, @object));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment