Multiple choice technology programming languages

Which of the following datatype is not a reference type?

  1. Delegate

  2. Array

  3. Enum

  4. Class

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Enum is a value type in C#, while Delegate, Array, and Class are all reference types. Value types store their data directly, while reference types store a reference to the data's location in memory. Enums are derived from System.ValueType.