Difference between revisions of "C Sharp Data Types"

esse quam videri
Jump to: navigation, search
Line 10: Line 10:
 
Type Range
 
Type Range
  
[[byte]] 0 .. 255
+
[[byte|Byte]] 0 .. 255
  
sbyte -128 .. 127
+
[[sbyte|Sbyte]] -128 .. 127
  
short -32,768 .. 32,767
+
[[short|Short]] -32,768 .. 32,767
  
ushort 0 .. 65,535
+
[[ushort|Ushort]] 0 .. 65,535
  
int -2,147,483,648 .. 2,147,483,647
+
[[int|Int]] -2,147,483,648 .. 2,147,483,647
  
uint 0 .. 4,294,967,295
+
[[uint|Uint]] 0 .. 4,294,967,295
  
long -9,223,372,036,854,775,808 .. 9,223,372,036,854,775,807
+
[[long|Long]] -9,223,372,036,854,775,808 .. 9,223,372,036,854,775,807
  
ulong 0 .. 18,446,744,073,709,551,615
+
[[ulong|Ulong]] 0 .. 18,446,744,073,709,551,615
  
float -3.402823e38 .. 3.402823e38
+
[[float|Float]] -3.402823e38 .. 3.402823e38
  
double -1.79769313486232e308 .. 1.79769313486232e308
+
[[double|Double]] -1.79769313486232e308 .. 1.79769313486232e308
  
decimal -79228162514264337593543950335 .. 79228162514264337593543950335
+
[[decimal|Decimal]] -79228162514264337593543950335 .. 79228162514264337593543950335
  
char A Unicode character.
+
[[char|Char]] A Unicode character
  
string A string of Unicode characters.
+
[[string|String]] A string of Unicode characters
  
bool True or False.
+
[[bool|Bool]] True or False
  
object An object.
+
[[object|Object]] An object
  
 
=Resources=
 
=Resources=

Revision as of 23:31, 7 June 2019

Definition

Relevance

Explanation

C# Built-In Data Types

Type Range

Byte 0 .. 255

Sbyte -128 .. 127

Short -32,768 .. 32,767

Ushort 0 .. 65,535

Int -2,147,483,648 .. 2,147,483,647

Uint 0 .. 4,294,967,295

Long -9,223,372,036,854,775,808 .. 9,223,372,036,854,775,807

Ulong 0 .. 18,446,744,073,709,551,615

Float -3.402823e38 .. 3.402823e38

Double -1.79769313486232e308 .. 1.79769313486232e308

Decimal -79228162514264337593543950335 .. 79228162514264337593543950335

Char A Unicode character

String A string of Unicode characters

Bool True or False

Object An object

Resources

See also

Notes

External Links