Is it not possible to store a boolean value as a variable?
What is before string in c#?
Does constructor return any value in c#?
Whats an assembly? Describe the importance of assembly?
What is Covariance and contravariance in C#?
What is default access modifier for class in c#?
Define encapsulation?
How do you comment out code in c#?
Is array thread safe c#?
What is string empty?
what is the need of using interface in program ex:if we have a program like this interface1() { void method1(); void method(); } class a1 : interface1 { a1 b = new b(); b.method1(); b.method2(); } so without using interface also we can achieve this then wat is the need to use the interface? plz give me the answer
How are methods overloaded?
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 }