我的出生年份- 1975个月- 08天- 28小时19分10秒22
我想在我的(出生年,月,日,小时,分钟,秒)上加上1.746387366年,得到一个新的年月日小时分秒
我怎样才能
谢谢。
发布于 2020-12-30 03:22:28
您可以为您的出生时刻创建一个日期时间:
Dim birthdate = new DateTime(1975, 8, 28, 19, 10, 22)然后你把这个年数加上去:
Dim result = birthdate.AddYears(1.746387366)https://stackoverflow.com/questions/65497044
复制相似问题