Skip to content

Instantly share code, notes, and snippets.

@NineMvp
Last active October 19, 2016 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NineMvp/ef1ac22aa783b3b27d4dd5905242fc98 to your computer and use it in GitHub Desktop.
Save NineMvp/ef1ac22aa783b3b27d4dd5905242fc98 to your computer and use it in GitHub Desktop.
c#7.0 out variables feature
void Run()
{
OutVariables(out int x, out int y);
Console.Write($"{x}, {y}");
}
void OutVariables(out int x, out int y) => x = (y = 2) * 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment