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?
Can you declare struct members as protected?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?
If a method's return type is void, can you use a return keyword in the method?
What is the base class for array types?
Can you have parameters for static constructors?
What is a nested type. Give an example?
What is the difference between system.text.stringbuilder and system.string?
Are value types sealed?