Tutorialsteacher

Follow Us

C# - Data Types

C# is a strongly-typed language. It means we must declare the type of a variable that indicates the kind of values it is going to store, such as integer, float, decimal, text, etc.

The following declares and initialized variables of different data types.

Example: Variables of Different Data Types
string stringVar = "Hello World!!";
int intVar = 100;
float floatVar = 10.2f;
char charVar = 'A';
bool boolVar = true;

C# mainly categorized data types in two types: Value types and Reference types. Value types include simple types (such as int, float, bool, and char), enum types, struct types, and Nullable value types. Reference types include className types, interface types, delegate types, and array types. Learn about value types and reference types in detail in the next chapter.

C# Data Types

Predefined Data Types in C#

C# includes some predefined value types and reference types. The following table lists predefined data types:

TypeDescriptionRangeSuffix
byte8-bit unsigned integer0 to 255
sbyte8-bit signed integer-128 to 127
short16-bit signed integer-32,768 to 32,767
ushort16-bit unsigned integer0 to 65,535
int32-bit signed integer-2,147,483,648
to
2,147,483,647
uint32-bit unsigned integer0 to 4,294,967,295u
long64-bit signed integer-9,223,372,036,854,775,808
to
9,223,372,036,854,775,807
l
ulong64-bit unsigned integer0 to 18,446,744,073,709,551,615ul
float32-bit Single-precision floating point type-3.402823e38 to 3.402823e38f
double64-bit double-precision floating point type-1.79769313486232e308 to 1.79769313486232e308d
decimal128-bit decimal type for financial and monetary calculations(+ or -)1.0 x 10e-28
to
7.9 x 10e28
m
char16-bit single Unicode characterAny valid character, e.g. a,*, \x0058 (hex), or\u0058 (Unicode)
bool8-bit logical true/false valueTrue or False
objectBase type of all other types.
stringA sequence of Unicode characters
DateTimeRepresents date and time0:00:00am 1/1/01
to
11:59:59pm 12/31/9999

As you can see in the above table that each data type (except string and object) includes value range. The compiler will give an error if the value goes out of datatype's permitted range. For example, int data type's range is -2,147,483,648 to 2,147,483,647. So if you assign a value which is not in this range, then the compiler would give an error.

Compile Time Error
// compile time error: Cannot implicitly convert type 'long' to 'int'.
int i = 21474836470;

The value of unsigned integers, long, float, double, and decimal type must be suffix by u,l,f,d, and m, respectively.

Example: Value Suffix
uint ui = 100u;
float fl = 10.2f;
long l = 45755452222222l;
ulong ul = 45755452222222ul;
double d = 11452222.555d;
decimal mon = 1000.15m;

Alias vs .NET Type

The predefined data types are alias to their .NET type (CLR className) name. The following table lists alias for predefined data types and related .NET className name.

Alias.NET TypeType
byteSystem.Bytestruct
sbyteSystem.SBytestruct
intSystem.Int32struct
uintSystem.UInt32struct
shortSystem.Int16struct
ushortSystem.UInt16struct
longSystem.Int64struct
ulongSystem.UInt64struct
floatSystem.Singlestruct
doubleSystem.Doublestruct
charSystem.Charstruct
boolSystem.Booleanstruct
objectSystem.ObjectclassName
stringSystem.StringclassName
decimalSystem.Decimalstruct
DateTimeSystem.DateTimestruct

It means that whether you define a variable of int or Int32, both are the same.

Default Values

Every data type has a default value. Numeric type is 0, boolean has false, and char has '\0' as default value. Use the default(typename) to assign a default value of the data type or C# 7.1 onward, use default literal.

int i = default(int); // 0
float f = default(float);// 0
decimal d = default(decimal);// 0
bool b = default(bool);// false
char c = default(char);// ''

// C# 7.1 onwards
int i = default; // 0
float f = default;// 0
decimal d = default;// 0
bool b = default;// false
char c = default;// ''

Conversions

The values of certain data types are automatically converted to different data types in C#. This is called an implicit conversion.

Example: Implicit Conversion
int i = 345;
float f = i;

Console.WriteLine(f); //output: 345

In the above example, the value of an integer variable i is assigned to the variable of float type f because this conversion operation is predefined in C#.

The following is an implicit data type conversion table.

Implicit Conversion FromTo
sbyteshort, int, long, float, double, decimal
byteshort, ushort, int, uint, long, ulong, float, double, decimal
shortint, long, float, double, or decimal
ushortint, uint, long, ulong, float, double, or decimal
intlong, float, double, or decimal.
uintlong, ulong, float, double, or decimal
longfloat, double, or decimal
ulongfloat, double, or decimal
charushort, int, uint, long, ulong, float, double, or decimal
floatDouble

Conversions from int, uint, long, or ulong to float and from long or ulong to double may cause a loss of precision. No data type implicitly converted to the char type.

However, not all data types are implicitly converted to other data types. For example, int type cannot be converted to uint implicitly. It must be specified explicitly, as shown below.

Example: Explicit Conversion
public static void Main()
{
    int i = 100;
    uint u = (uint) i;
    Console.Write(i);
}

In the above example, integer i is converted to uint explicitly by specifying uint in the brackets (uint). This will convert an integer to uint.

Further Reading
  • Convert a string to an integer in C#.
  • Boxing and Unboxing in C#.
  • Conversions