Advertisement
Guest User

Untitled

a guest
May 30th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace CurrentDateAndTime
  5. {
  6. class DateAndTime
  7. {
  8. static void Main()
  9. {
  10. DateTime current = DateTime.Now;
  11. Console.WriteLine(current);
  12. Console.ReadLine();
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement