Guest User

Untitled

a guest
Oct 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public static Boolean IsDate(string Expression)
  2. {
  3. Boolean resultado = false;
  4. try
  5. {
  6. DateTime isDate = DateTime.ParseExact(Expression, "dd/MM/yyyy", null);
  7. resultado = true;
  8. }
  9. catch
  10. {
  11. resultado = false;
  12. }
  13. return resultado;
  14. }
Add Comment
Please, Sign In to add comment