我的計劃是使日,月,年,時,StartMinute下拉,並且下拉的選擇的號碼是要去被轉換成一個日期時間,並保存在數據庫中如何轉換爲int爲DateTime
如何將int轉換爲DateTime,現在我的StartTime出現錯誤。錯誤是「Sannot implictly convert type'int'to'System.DateTime'」。
public class Job
{
public int ID { get; set; }
public int Day { get; set; }
public int Month { get; set; }
public int Year { get; set; }
public int StartHour { get; set; }
public int StartMinute { get; set; }
public int EndHour { get; set; }
public int EndMinute { get; set; }
public DateTime StartTime
{
get
{
return Day + Month + Year + StartHour + StartMinute;
}
set
{
StartTime = Day + Month + Year + StartHour + StartMinute;
}
}
public DateTime EndTime { get; set; }
獲取您的一年和...並使字符串和轉換爲日期時間 – Jamaxack
而不是多個控件添加日曆的單個控件。 –
另一方面...你認爲'StartTime'調用'StartTime = ...'需要做什麼? –