Skip to content

Instantly share code, notes, and snippets.

@chomado
Created February 16, 2017 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chomado/4b389fea10fcf5e71b8eb37bd3bbd5de to your computer and use it in GitHub Desktop.
Save chomado/4b389fea10fcf5e71b8eb37bd3bbd5de to your computer and use it in GitHub Desktop.
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