Classes and Objects
- slide 20 : 29
The current object - this
The current object in a C# program execution is denoted by the variable
this
The BankAccount - emphasizing this.
The BankAccount - A more radical use of this.
this
used for other related purposes in C#:
Reference to shadowed instance variables
Activation of another constructor
Definition of indexers
In definition of extension methods
This in indexers
This in constructors
Message passing and the current object