In C#, data types are used to specify the type of data that a variable can hold. There are two types of data types available… Read More
Tag Archives: CSharp-data-types
Enumeration (or enum) is a value data type in C#. It is mainly used to assign the names or string values to integral constants, that… Read More
Prerequisite: C# Data Types Type conversion happens when we assign the value of one data type to another. If the data types are compatible, then… Read More
Prerequisite : Data Types in C# Boxing and unboxing are important concepts in C#. The C# Type System contains three data types: Value Types (int,… Read More
Data types specify the type of data that a valid C# variable can hold. C# is a strongly typed programming language because in C#, each… Read More