Home »
MCQs »
C# MCQs
C# pointer can only be declared to hold the memory address of ___
93. C# pointer can only be declared to hold the memory address of ___.
- value types and arrays
- reference types
- pointer types
- reference and pointer types
Answer: A) value types and arrays
Explanation:
C# pointer can only be declared to hold the memory address of value types and arrays. Unlike reference types, pointer types are not tracked by the default garbage collection mechanism.