Hi there,
The Caluclator is instantiated on the very first line at page 170 (C#) or at page 169 (
VB):
VB
Dim myCalculator As New Calculator()
C#
Calculator myCalculator = new Calculator();
The Calculator class itself is shown at page 168 (created in step 4 of the Try It Out).
So, I am not sure what exactly you're missing.
Imar