Explain about Threading Types.
Is learning c# hard?
without modifying source code if we compile again, will it be generated MSIL again?
Why do we use dictionary in c#?
what is the difference between passing a value object by reference and a reference object by value?
How can you overload a method?
6. If we assign a value in textbox on Page_UnLoad event, will it display?
Explain the use of virtual, sealed, override, and abstract method?
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 virtual 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's your approach to fetch static data in your windows form application?
State whether it is true to test a Web service you must create a windows application or Web application to consume this service or not?
What is yield in c#?
What is the and operator in c#?