Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
public int Add(int num1, int num2)
{
int result = num1 + num2;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment