Value and Reference Type

Types In C#

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, and float), enum types, and struct types. ** Reference types include class types, interface types, delegate types, and array types. …

Types In C# Read More »

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 class Type ? Interfaces ? Delegates ? The string type ? Arrays   The object type   The object class …

Reference Types in C# Read More »

Scroll to Top