1. 程式人生 > >C#Winfrom數據庫讀取日期(年月日格式轉換)

C#Winfrom數據庫讀取日期(年月日格式轉換)

tables convert col dataset art spa 類型 time winfrom

顯示類型:2018-6-1

//說明:data_time.Text 控件名文本值 ;dataset.Tables[0].Rows[0]["art_time"] 數據集.表名.[行標][列標]

data_time.Text = Convert.ToDateTime(thisDS.Tables[0].Rows[0]["art_time"]).ToShortDateString();

顯示類型:2018年6月1

data_time.Text = Convert.ToDateTime(thisDS.Tables[0].Rows[0]["art_time"]).ToLongDateString();

C#Winfrom數據庫讀取日期(年月日格式轉換)