Is array reference type / value type ?
Answer Posted / sajan
All array types are implicitly derived from System.Array,
which itself is derived from System.Object. This means that
all arrays are always reference types which are allocated on
the managed heap, and your app's variable contains a
reference to the array and not the array itself.
| Is This Answer Correct ? | 29 Yes | 0 No |
Post New Answer View All Answers
What are the three types of operators?
What is the CTS, and how does it relate to the CLS?
Explain how to implement an object pool in c#.net
Does unity use c++ or c#?
What exactly happens when we debug and build the program?
What is the full form of GAC? Explain its uses?
Explain the Usage of web.config
Contrast System.String and System.Text.StringBuilder classes?
What are the fundamental oop concepts?
Differentiate between object pooling and connection pooling in c#?
How many dimensions can an array have?
What does int32 mean in c#?
How do I start a program in c#?
Can a class have multiple constructors c#?
What is the difference between null and string empty in c#?