Explain polymorphism in c# with a simple example?
What is the difference between method parameters and method arguments. Give an example?
When do you generally use a class over a struct?
What is the difference between xml documentation tag?
What happens during the process of boxing?
What is a verbatim string literal and why do we use it?
What happens if a static constructor throws an exception?
So let's say I have an application that uses myapp.dll assembly, version 1.0.0.0. There is a security bug in that assembly, and I publish the patch, issuing it under name myapp.dll 1.1.0.0. How do I tell the client applications that are already installed to start using this new myapp.dll?
Are all methods virtual in c#?
If casting fails what type of exception is thrown?
What operators can be used to cast from one reference type to another without the risk of throwing an exception?
Does c# support const methods, properties, or events?
What are the advantages of properties in c#?
If a class derives from another class, will the derived class automatically contain all the public, protected, and internal members of the base class?
How can I process command-line arguments?