calculate the age from the selectdate

  • Thread starter Thread starter Guest
  • Start date Start date
Provided selectdate is a variable of System.DateTime type:

System.DateTime age = System.DateTime.Today - selectdate;
int years = age.Year;
int months = age.Month;

Eliyahu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top