Function that creates a timestamp in c#(在 C# 中创建时间戳的函数)
问题描述
我想知道,有没有办法在 c# 中从日期时间创建时间戳?我需要一个同样适用于 Compact Framework 的毫秒精度值(因为 DateTime.ToBinary() 在 CF 中不存在).
I was wondering, is there a way to create a timestamp in c# from a datetime? I need a millisecond precision value that also works in Compact Framework(saying that since DateTime.ToBinary() does not exist in CF).
我的问题是我想以与数据库无关的方式存储此值,以便稍后对其进行排序并找出哪个值更大等.
My problem is that i want to store this value in a database agnostic way so i can sortby it later and find out which value is greater from another etc.
推荐答案
我总是使用类似下面的东西:
I always use something like the following:
public static String GetTimestamp(this DateTime value)
{
return value.ToString("yyyyMMddHHmmssfff");
}
这将为您提供一个类似 200905211035131468 的字符串,因为该字符串从时间戳的最高位到最低位的字符串在您的 SQL 查询中进行简单的字符串排序,如果您在数据库中粘贴值,则可以使用按日期排序
This will give you a string like 200905211035131468, as the string goes from highest order bits of the timestamp to lowest order simple string sorting in your SQL queries can be used to order by date if you're sticking values in a database
这篇关于在 C# 中创建时间戳的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C# 中创建时间戳的函数
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01