Skip to content

Instantly share code, notes, and snippets.

@vcsjones
Created July 2, 2013 18:15
Show Gist options
  • Save vcsjones/5911693 to your computer and use it in GitHub Desktop.
Save vcsjones/5911693 to your computer and use it in GitHub Desktop.
public static int DivRem(int a, int b, out int result)
{
result = a % b;
return a / b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment