Skip to content

Instantly share code, notes, and snippets.

@sarasfox
Last active January 4, 2016 02:19
Show Gist options
  • Save sarasfox/8553783 to your computer and use it in GitHub Desktop.
Save sarasfox/8553783 to your computer and use it in GitHub Desktop.
out idea
public static int add (int a, out int b){
b = a + 5;
return a;
}
public static void Main (){
add(5,int boo);
Console.WriteLine(boo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment