Is string reference type / value type?
Answer Posted / lithi
String is Reference Type
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the differences between a class and a struct?
Perfect Example Of While And Do-While Loop In C#.Net ?
What is default constructor c#?
What are verbatim strings in c#?
How objects are stored in memory?
How can I check the type of an object at runtime?
Explain about multithreading?
What is distribute by in hive?
What is cache memory in c#?
What are static and dynamic variables?
What is the advantage of dependency injection?
What is access modifier in c#?
What is array class in c#?
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; } }
Explain static class members.