How do I do a case-insensitive string comparison?
write a program to find the biggest palindrome in the given string
Is it possible to have different access modifiers on the get/set methods of a property in c#?
what is Encapsulation?
what is diffrence between protected ,internal and protected internal?? whether protected field available in derived class which is outside the assembly. if not ..this is possible by which access modifiers??
If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?
What is different between Boxing and Unboxing?
What is static classes in c#?
You are designing a user control. You created new property called backgroundimage which is of type image. You wanted to disable storing this property in the user’s form. How to achieve this?
What is method in c#?
What is action c#?
What is desktop example?
There are a class A. Another class B derived from it. Now if I do A a = new B(); and B b = new B(); What will happen in both the statements. And what is the difference between these two statements.