Advertisement
mejpark

Three C# data types

Jan 13th, 2014
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. +------------+----------------------------+-------+---------------------------------+
  2. | Short Name | Type | Width | Range (bits) |
  3. +------------+----------------------------+-------+---------------------------------+
  4. | byte | Unsigned integer | 8 | 0 to 255 |
  5. +------------+----------------------------+-------+---------------------------------+
  6. | int | Signed integer | 32 | -2,147,483,648 to 2,147,483,647 |
  7. +------------+----------------------------+-------+---------------------------------+
  8. | char | A single Unicode character | 16 | Unicode symbols used in text |
  9. +------------+----------------------------+-------+---------------------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement