计算C#WinForm中的活跃年数

这个问题在这里已经有了答案:

  • 我如何用C#计算某人的年龄? 64个答案

  • 尝试这样的事情:

    private void button1_Click(object sender, EventArgs e)
    {
        DateTime  sonsBirthday = DateTime.Parse(txtSonsBirthday.Text).Date;
    
        DateTime now =  DateTime.Now;
    
        TimeSpan timeSpan = now - sonsBirthday;
        //timeSpan = Convert.TimeSpan(lblTimeAlive); // old
        lblTimeAlive.Text = timeSpan.ToString(); // new
    

    然后微调timeSpan的字符串格式。

    链接地址: http://www.djcxy.com/p/54367.html

    上一篇: Calculate # of Years Alive in C# WinForm

    下一篇: age calculation