Are structs value types or reference types?
What is the difference between continue and break statement?
How to create events for a control? What is custom events? How to create it?
Where is the output of TextWriterTraceListener redirected?
What is private constructor c#?
Give an example to show for hiding base class methods?
Which types of inheritances does c# support?
What is garbage collector and where should you use in .NET?
Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }
What does == mean in c sharp?
What is use of list in c#?
What does type safe mean in c#?
Is c# queue thread safe?