Is array reference type / value type?

Answer Posted / suryaprakash

Array is reference type, this type stored in heap memory

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where do we use static class in c#?

539


What is property c#?

567


Can a static class have a constructor c#?

558


Is stringbuilder faster than string concatenation c#?

524


Explain the Usage of web.config

644






What is dataset and dataadapter in c#?

564


What is meant by clr?

630


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3447


What is the default scope of a class in c#?

542


What is namespace give the example?

527


Explain how to use an extender provider in the project.

562


What is method and function in c#?

555


what are nullable types in c#

583


Can we change static variable value in c#?

550


What are winforms in c#?

557