In this example, we are incrementing/decrementing the current date by one year when creating a new System.DateTime object. This may work most of the time, but on any given February 29th, the resulting value will be invalid.
To fix this bug, we add/substract years to the current date by calling AddYears method on it.
To fix this bug, we add/subtract years to the current date by calling AddYears method on it.