Advertisement
vladkos

Переменные

Jan 21st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             int a = -1;
  4.             long s3po = 123213;
  5.             float _b = 3.4f;
  6.             byte Qz = 127;
  7.             sbyte Sbyte = -128;
  8.             double r2d2 = 3.124421d;
  9.             bool @bool = true;
  10.             string SomeString = "";
  11.             char SomeChar = ' ';
  12.             decimal @decimal = 12432134;
  13.             var VarBool = false;
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement