I'm sure the syntax is right.
// Check if amount equals $1.00
if (totalChange >= 100)
{
MessageBox.Show("Equal to $1.00");
else
MessageBox.Show("Not equal to $1.00");
}