博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 当前时间和时间戳互相转换
阅读量:5256 次
发布时间:2019-06-14

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

1、当前时间转换为时间戳:

public static int ConvertDatetimeToInt(System.DateTime now) {    System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970,1,1));    return (int)(now - startTime).TotalSeconds;}

2、时间戳转换为当前时间:

public DateTime getDatetime(String timeStamp){   System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1));   long lTime = long.Parse(timeStamp + "0000000");   TimeSpan toNow = new TimeSpan(lTime);   return startTime.Add(toNow); }

 

转载于:https://www.cnblogs.com/delmarks/p/cshap-shi-jian-chuo.html

你可能感兴趣的文章
XDU 1160 - 科协的数字游戏I
查看>>
HDOJ 1059 Dividing
查看>>
Xceed Zip压缩和解压控件Xceed Zip Compression Library
查看>>
58.UIScrollView XIB拖拽约束
查看>>
LUA 删除元素的问题
查看>>
Memcpy, blockcopy的进一步理解
查看>>
Unified shader model
查看>>
python 管理上下文with
查看>>
计算机相关题目
查看>>
VS重装后修改VC++包含目录、继承值以及附加依赖项等
查看>>
20170420条件表达式的三元操作符x if 条件 else y
查看>>
微信企业号办公系统-图片预览放大功能-previewImage
查看>>
30334逻辑指令
查看>>
AJAX顺序输出
查看>>
namespace for function in Flex
查看>>
mysql binlog 大小设置问题
查看>>
Android中颜色透明度对应16进制值
查看>>
Zigbee通讯漫谈(初次见面)
查看>>
linux查找文件命令
查看>>
atitit.attilax的软件 架构 理念.docx
查看>>