Advertisement
gkgupta67

Untitled

Apr 29th, 2013
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1.  
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6.  
  7. namespace ConsoleApplication8
  8. {
  9. class Program
  10. {
  11. public sbyte theSignedByte;
  12. public byte theByte;
  13. public short theShort;
  14. public ushort theushort;
  15. public int theInt;
  16. public uint theUint;
  17. public long theLong;
  18. public ulong theULong;
  19. public char theChar;
  20. public float theFloat;
  21. public double theDouble;
  22. public bool theBool;
  23. public decimal theDecimal;
  24. public string theString;
  25. public object theObj;
  26. public static int Main(string[] args)
  27. {
  28. Program v = new Program();
  29. return 0;
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement