Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public Nullable<DateTime> StartDateYear { get; set; }
- public string StartDateYearText {
- get
- {
- if(StartDateYear!=null)
- {
- return StartDateYear?.ToString("dd/MM/yyyy");
- }
- else
- {
- return string.Empty;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment