1. 程式人生 > >使用ParseExact方法將字串轉換為日期格式

使用ParseExact方法將字串轉換為日期格式

實現效果:

知識運用:

   DateTime結構的ParseExact方法

    public static DateTime ParseExact(string s,string format,IFormatProvider provider);

 

實現程式碼:

        private void button1_Click(object sender, EventArgs e)
        {
            string s = string.Format("{0}/{1}/{2}",     //得到日期字串
                textBox1.Text, textBox2.Text, textBox3.Text);
            DateTime datetime 
= DateTime.ParseExact //將字串轉換為日期格式 (s,"yyyy/MM/dd",null); MessageBox.Show(datetime.ToLongDateString(),"轉換結果"); //彈出訊息對話方塊 }