3 Kasım 2020 Salı

C# TimeSpan

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp31
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
//TimeSpan Nesnesi;
     // Tarih ve zaman değerleri üzerine ekleme,çıkarma gibi işlemler yaparken,işlem sonucu TimeSpan 
//nesnesi türünden bir değişkene aktararak işlem sonucunu birimlere ayırabiliriz.TimeSpan değişkeni ile //elde edilen işlem sonucunu gün,saat,dakika,saniye ve millisaniye cinsinden elde edebiliriz...
        private void button1_Click(object sender, EventArgs e)
        {
            DateTime tarih1 = Convert.ToDateTime(textBox1.Text);
            DateTime tarih2 = Convert.ToDateTime(textBox2.Text);
            TimeSpan ts = tarih1 - tarih2;
            label3.Text = ts.Days.ToString();
        }
    }
}


Hiç yorum yok:

Yorum Gönder