Created
February 16, 2017 16:05
-
-
Save chomado/4b389fea10fcf5e71b8eb37bd3bbd5de 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace LiveUnitTestSample | |
{ | |
public class Calc | |
{ | |
public static int Add(int x, int y) => x + y; | |
//public static int Add(int x, int y) => 5; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment