Skip to content

Instantly share code, notes, and snippets.

@tunatoksoz
Created October 13, 2009 12:24
Show Gist options
  • Select an option

  • Save tunatoksoz/209209 to your computer and use it in GitHub Desktop.

Select an option

Save tunatoksoz/209209 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
int x=3, y=4;
Assert.That(()=>x==y);
}
}
public class Assert
{
public static void That(Expression<Func<bool>> exp)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment