datetime check null c#

58

datetime check null c# -

DateTime? datetime = null;

 if (!datetime.HasValue)
 {
     //unassigned
 }

Comments

Submit
0 Comments