Type System Unification in C# .NET
Last Updated :
06 May, 2019
The Type System Unification in C# means all the data types in C# are inherited from the
Object class, whether directly or indirectly. Or you can say all types are considered as objects. In C#, primitive types are known as the Value Types which are basically structs. Internally, structs and
classes inherit the Object Class. That's why all types are indirectly considered as Objects, and this terminology is known as T
ype System Unification.
Example: All the predefined types (like short, int long etc.) are structs. Below are predefined types along with their
struct equivalents:
Example: In the below program, the value data types such as int, char, bool are used as objects because of type system unification with the method ToString() that returns a string representing that particular object.
csharp
// C# implementation of Type
// System Unification
using System;
class GFG {
// Main Method
public static void Main(string[] args)
{
// Value data types
int i = 1;
char c = 'A';
bool b = true;
Console.WriteLine(i.ToString());
Console.WriteLine(c.ToString());
Console.WriteLine(b.ToString());
}
}
Boxing and Unboxing
Type System Unification enables boxing and unboxing as any value data type can be treated as an object. So, when a value data type such as int, char, bool, etc. is converted into an object type, it is known as boxing. Conversely, when the object type is converted back into the data type, it is known as unboxing.
Boxing: A value data type such as int, char, bool, etc. is converted into an object type implicitly in boxing. First, an object type is allocated and then the value in the value data type is copied into the object type.
Example:
csharp
// C# implementation of Boxing
using System;
class GFG {
// Main Method
static public void Main()
{
// int value data type
int val = 8;
// boxing
object obj = val;
System.Console.WriteLine("val = {0}", val);
System.Console.WriteLine("obj = {0}", obj);
}
}
Unboxing: An object type is converted into a value data type such as int, char, bool, etc. explicitly in unboxing. First, it is checked if the object type is the boxed value of the value data type. If yes, then the value in the object type is copied out of it.
Example:
csharp
// C# implementation of Unboxing
using System;
class GFG {
// Main Method
static public void Main()
{
// int value data type
int val1 = 8;
// boxing
object obj = val1;
// unboxing
int val2 = (int)obj;
Console.WriteLine("val1 = " + val1);
Console.WriteLine("obj = " + obj);
Console.WriteLine("val2 = " + val2);
}
}
Output:
val1 = 8
obj = 8
val2 = 8
Benefits of Type System Unification: The Type System Unification is quite useful as it provides the dual benefit of a data type behaving as a value data type or an object type. A value data type can be used when required and it can be converted into an object type using boxing if required because of the inherent characteristic of Type System Unification.
Similar Reads
What is Reflection in C#? Reflection is the process of describing the metadata of types, methods and fields in a code. The namespace System.Reflection enables you to obtain data about the loaded assemblies, the elements within them like classes, methods and value types. Some of the commonly used classes of System.Reflection
4 min read
C# | Multiple inheritance using interfaces Introduction:Multiple inheritance refers to the ability of a class to inherit from multiple base classes. C# does not support multiple inheritance of classes, but it does supportmultiple inheritance using interfaces. An interface is a collection of abstract methods that a class can implement to prov
7 min read
C# | Generics - Introduction Generic is a class which allows the user to define classes and methods with the placeholder. Generics were added to version 2.0 of the C# language. The basic idea behind using Generic is to allow type (Integer, String, ⦠etc and user-defined types) to be a parameter to methods, classes, and interfac
6 min read
C# | Type.GetNestedTypes() Method Type.GetNestedTypes() Method is used to get the types nested within the current Type. There are 2 methods in the overload list of this method as follows: GetNestedTypes() Method This method is used to return the public types nested in the current Type. Syntax: public Type[] GetNestedTypes ();Return
5 min read
C# | Type.GetNestedType() Method Type.GetNestedType() Method is used to get a specific type nested within the current Type. There are 2 methods in the overload list of this method as follows: GetNestedType(String, BindingFlags) Method GetNestedType(String) Method GetNestedType(String, BindingFlags) Method This method is used to sea
4 min read
typeof Operator Keyword in C# The typeof is an operator keyword which is used to get a type at the compile-time. Or in other words, this operator is used to get the System.Type object for a type. This operator takes the Type itself as an argument and returns the marked type of the argument. Important points: The operand of typeo
3 min read