Last active
January 7, 2019 20:55
-
-
Save alefcarlos/6232b792dc5e6b192ad5732584046278 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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