What are the types of class in c#?


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

Post New Answer

More C Sharp Interview Questions

Why reflection is used in c#?

0 Answers  


In c#, what will happen if you do not explicitly provide a constructor for a class?

0 Answers  


What is the main method?

0 Answers  


Is c# a strongly-typed language?

0 Answers  


Explain deadlock?

0 Answers  






class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....

3 Answers   HCL,


what is accessspecifier and explation each with example?

3 Answers  


How structure objects are destroyed? As GC releases only the objects in stack, and structure is a value type and stored in heap. So how structure objects are released?

2 Answers  


Is system a class in c#?

0 Answers  


What is a float?

0 Answers  


What are collection classes?

0 Answers  


Can u create multiple threads of execution ?

1 Answers   IBM, ITC Infotech, UHU,


Categories