Use the DateTime.Now property. This returns a DateTime object that contains a Year and Month property (both are integers).
string currentMonth = DateTime.Now.Month.ToString();
string currentYear = DateTime.Now.Year.ToString();
monthLabel.Text = currentMonth;
yearLabel.Text = currentYear;