Skip to content

Instantly share code, notes, and snippets.

@alefcarlos
Last active January 7, 2019 20:55
Show Gist options
  • Save alefcarlos/6232b792dc5e6b192ad5732584046278 to your computer and use it in GitHub Desktop.
Save alefcarlos/6232b792dc5e6b192ad5732584046278 to your computer and use it in GitHub Desktop.
namespace Problems
{
public static class Helpers
{
/// <summary>
/// Sums two numbers.
/// </summary>
/// <param name="a">First number.</param>
/// <param name="b">Second number.</param>
/// <returns>Returns the sum of two specified integer numbers.</returns>
public static int Sum(int a, int b) => a + b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment