C# is a strongly-typed language. It says, data must have a type that defines its nature and behavior. Type helps to manipulate data in a much managed way. We’ll cover the following main objectives that help to create and consume types in C#.
Understand Types
Create Types
Types and Memory Management
Special Types in C#
Type Conversion
Understand Types
Types are the declaration of an object which stores information and actions, that an object uses to produce required results. Type also stores the following information:
How much memory an object holds
Memory location where ...