Advertisement
winone1208

Daty C#

Jul 8th, 2020
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace PierwszyProgram
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             var slownik = new Dictionary<string, int>();
  11.  
  12.  
  13.             var dataWKalendarzu = new DateTime(2019, 10, 20, 15, 00, 00);
  14.  
  15.             Console.WriteLine(DateTime.Now.ToLongDateString());
  16.             Console.WriteLine(dataWKalendarzu.ToLongTimeString());
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement