Advertisement
Aggrodin

Current Date

Apr 16th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. using System;
  2. namespace CurrentDateTime
  3. {
  4.     class CurrentDateTime
  5.     {
  6.         static void Main()
  7.         {
  8.             DateTime now = DateTime.Now;
  9.             Console.WriteLine(now);
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement