I\'m looking for a way to use DateTime to parse two dates, to show the difference. I want to have it on the format: \"X years, Y months, Z days\".
DateTime
For J
DateTime a = DateTime(2015, 11, 29); DateTime b = DateTime(2007, 06, 27); int days = a.difference(b).inDays;