Is string value type c#?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

What are object oriented concepts?

6 Answers   Adea, Microsoft,


What is the difference between struct and class in c#?

3 Answers  


Write one code example for compile time binding and one for run time binding? What is early/late binding?

0 Answers  


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; } }

1 Answers   iGate,


Can abstract class have constructor in c#?

0 Answers  






Can we make a Static Constructor Parameterized? Give Reason with your answer

0 Answers  


What is the use of partial methods?

0 Answers  


How to block a class from being inherited further?

0 Answers  


Why is it important to override gethashcode when equals method is overridden?

0 Answers  


How do you use nullable?

0 Answers  


What is a verbatim string literal and why do we use it?

0 Answers  


What's c# ?

0 Answers  


Categories