Advertisement
Guest User

Untitled

a guest
May 26th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public static void That(Expression<Func<bool>> expression)
  2. {
  3. if (!expression.Compile()())
  4. {
  5. Operators.Raise<Unit>(new NotSupportedException(expression.ToString()));
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement