Interview question: What are the two types of data type in C#?
There are two types of data type on C#: Value types and Reference types Value Type: A value type holds a data value within its own memory space. It means variables of these data types directly contain their values. They are derived from the class System.ValueType. Example of value types: bool, byte, char, decimal, double, enum, float, int, long,…
Read More “Interview question: What are the two types of data type in C#?” »