What is a class?
What does a class specifies ? ( 2 )
What can be created from the class?
What does the objected created from a class called?
How to create a class?
class className
{
Member declaration(s)
}
What is a constructor?
How to create a object?
className objectName - new constructor
Where to create class? ( 2 )
What is a property?
What is a backing field?
What is the access method of backing field?
What does it do when a backing vield is public?
What does the get accessor do?
What does the set accessor do?
When is get accessor executed?
When is set accessor is executed?
What is a read-only property and how to set a read-only property?
What is a parameterized constructor?
What is overloaded methods?
How does the compiler know which method to call?
When is a method is overloaded?
Can constructors be overloaded?
How to I identify the classes? ( 3 )
What am I going to do once the class have been identified?