Skip to content

Instantly share code, notes, and snippets.

@tuannguyenssu
Created July 8, 2019 01:34
Embed
What would you like to do?
public static class MathUtilities
{
public static int Add(int a, int b)
{
return (a + b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment