首页 > 代码库 > C#中的可空类型
C#中的可空类型
public class Person { public DateTime birth; public DateTime? death; string name; public TimeSpan Age { get { if (!death.HasValue) { return DateTime.Now - birth; } else { return death.Value - birth; } } } //构造函数 public Person(string name, DateTime birth,DateTime?death) { this.birth = birth; this.death = death; this.name = name; } }Person tr = new Person("AAAA", new DateTime(1988, 12, 13),null); Person kk = new Person("BBBB", new DateTime(1912, 12, 13), new DateTime(1954, 12, 12)); Console.ReadKey();
C#中的可空类型
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。