Advertisement
RedFlys

CLight_BaseLevel_Lesson1_1

Dec 30th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace CLight_BaseLevel_Lesson1_1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             byte b;
  14.             sbyte sb;
  15.             short sh;
  16.             ushort ush;
  17.             int i;
  18.             uint ui;
  19.             long l;
  20.             ulong ul;
  21.             string s;
  22.             char c;          
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement