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
Is post back in c#?
What are floating point numbers?
Is c# good for beginners?
Can abstract classes be final?
What is a Jagged Array in C#?
Does c# support a variable number of arguments?
How do you declare a variable in c#?
Should I use double or float?
Is c# good for web development?
Explain the ways to deploy an assembly?
What is difference between class and abstract class in c#?
Is python easier than c#?
What is assembly manifest?
How do partial classes work in c#?
Can a private virtual method can be overridden?