Types In C# The C# language types are divided into three main categories: ? Value types ? reference types ? pointer types Notes: ** Value types include simple types (e.g., char, int, …
Read More »Value and Reference Type
Reference Types in C#
A variable representing an object of Reference type contains reference or address of the actual data. Reference types are allocated on the managed heap. Different reference types are: ? The Object Type ? The …
Read More »