導致錯誤在我的C#代碼後面,當我轉換
public DateTime custDOB { get; set; }
到
public DateTime? SubDOB { get; set; }
將DateTime轉換爲DateTime?在asp.net
我在我的代碼行
tboxDateOfBirth.Text = oCust.custDOB.ToShortDateString();
和消息的一個得到一個錯誤讀取'System.Nullable'不包含'ToShortDateString'的定義,並且沒有找到接受'System.Nullable'類型的第一個參數的擴展方法'ToShortDateString'
我該如何解決這個問題?
雖然解決您的問題很簡單,措辭頗爲混亂。在第一行代碼中將'custDOB'的類型更改爲'DateTime?'。 – 2012-08-14 13:55:36