Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. using System;
  2. using ExtensionMethodsDate;
  3.  
  4. namespace ExtensionMethods
  5. {
  6. class MainClass
  7. {
  8. public static void Main(string[] args)
  9. {
  10. DateTime dataVerificacao;
  11.  
  12. dataVerificacao = Convert.ToDateTime("07/09/1822");
  13.  
  14. Console.WriteLine(dataVerificacao.ObterDiaDaSemana());
  15. Console.ReadKey();
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement