博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#根据日期DateTime和持续时间int找到日期
阅读量:6575 次
发布时间:2019-06-24

本文共 373 字,大约阅读时间需要 1 分钟。

protected DateTime GetFinish(DateTime start, int duration)        {            return start.AddDays(duration);        }        protected DateTime GetStart(DateTime finish, int duration)        {            return finish.AddDays(-duration);        }        protected int GetDuration(DateTime start, DateTime finish)        {            return (finish - start).Days;        }

转载地址:http://eswno.baihongyu.com/

你可能感兴趣的文章
实用linux命令
查看>>
mysql之 percona-xtrabackup 2.4.7安装(热备工具)
查看>>
CCF NOI1150 确定进制
查看>>
SpringBoot实战总汇--详解
查看>>
Windows 7,无法访问internet,DNS无响应
查看>>
2018年7月1日笔记
查看>>
尝试使用iReport4.7(基于Ubuntu Desktop 12.04 LTS)
查看>>
安装GIT(基于Ubuntu Desktop 12.04 LTS)
查看>>
动态规划:金矿模型
查看>>
子元素应该margin-top为何会影响父元素【转】
查看>>
AJAX 状态值(readyState)与状态码(status)详解
查看>>
BZOJ3668:[NOI2014]起床困难综合症(贪心)
查看>>
jQuery 中bind(),live(),delegate(),on() 区别
查看>>
C++编程中const和#define的区别
查看>>
LightOJ 1245(Harmonic Number (II))
查看>>
小知识记录
查看>>
109. Convert Sorted List to Binary Search Tree
查看>>
玩转HTML5移动页面
查看>>
Please review your Gradle project setup in the android/ folde
查看>>
带左右按钮、 渐隐渐现 轮播图
查看>>