show/hide this revision's text 3 CS1002: ; expected at line 1

For some reason Jeff's code didn't seem simple enough. To me this seems simpler and easier to understand:

DateTime now = DateTime.Now;
int age = now.Year - bday.Year;
if (now < bday.AddYears(age)) age--;
show/hide this revision's text 2 added Ivan's changes

For some reason Jeff's code didn't seem simple enough. To me this seems simpler and easier to understand:

DateTime now = DateTime.Now
int age = DateTime.Now.Year now.Year - bday.Year;
if (DateTime.Nownow < bday.AddYears(age)) age--;
show/hide this revision's text 1

For some reason Jeff's code didn't seem simple enough. To me this seems simpler and easier to understand:

int age = DateTime.Now.Year - bday.Year;
if (DateTime.Now< bday.AddYears(age)) age--;