• <bdo id='DE22b'></bdo><ul id='DE22b'></ul>

      <small id='DE22b'></small><noframes id='DE22b'>

      <i id='DE22b'><tr id='DE22b'><dt id='DE22b'><q id='DE22b'><span id='DE22b'><b id='DE22b'><form id='DE22b'><ins id='DE22b'></ins><ul id='DE22b'></ul><sub id='DE22b'></sub></form><legend id='DE22b'></legend><bdo id='DE22b'><pre id='DE22b'><center id='DE22b'></center></pre></bdo></b><th id='DE22b'></th></span></q></dt></tr></i><div id='DE22b'><tfoot id='DE22b'></tfoot><dl id='DE22b'><fieldset id='DE22b'></fieldset></dl></div>

      <legend id='DE22b'><style id='DE22b'><dir id='DE22b'><q id='DE22b'></q></dir></style></legend>

        <tfoot id='DE22b'></tfoot>

      1. 在 C# 中创建时间戳的函数

        Function that creates a timestamp in c#(在 C# 中创建时间戳的函数)
        • <bdo id='S0D2C'></bdo><ul id='S0D2C'></ul>
          <i id='S0D2C'><tr id='S0D2C'><dt id='S0D2C'><q id='S0D2C'><span id='S0D2C'><b id='S0D2C'><form id='S0D2C'><ins id='S0D2C'></ins><ul id='S0D2C'></ul><sub id='S0D2C'></sub></form><legend id='S0D2C'></legend><bdo id='S0D2C'><pre id='S0D2C'><center id='S0D2C'></center></pre></bdo></b><th id='S0D2C'></th></span></q></dt></tr></i><div id='S0D2C'><tfoot id='S0D2C'></tfoot><dl id='S0D2C'><fieldset id='S0D2C'></fieldset></dl></div>

                <tfoot id='S0D2C'></tfoot>
              • <small id='S0D2C'></small><noframes id='S0D2C'>

                  <tbody id='S0D2C'></tbody>
                  <legend id='S0D2C'><style id='S0D2C'><dir id='S0D2C'><q id='S0D2C'></q></dir></style></legend>
                  本文介绍了在 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# 中创建时间戳的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to keep the Text of a Read only TextBox after PostBack()?(PostBack()之后如何保留只读文本框的文本?)
                  Winforms Textbox - Using Ctrl-Backspace to Delete Whole Word(Winforms 文本框 - 使用 Ctrl-Backspace 删除整个单词)
                  C# - Add button click events using code(C# - 使用代码添加按钮单击事件)
                  Multi-color TextBox C#(多色文本框 C#)
                  How can i set the caret position to a specific index in passwordbox in WPF(如何将插入符号位置设置为 WPF 密码框中的特定索引)
                  C# Numeric Only TextBox Control(C# 纯数字文本框控件)
                    1. <small id='Y3NPR'></small><noframes id='Y3NPR'>

                        <bdo id='Y3NPR'></bdo><ul id='Y3NPR'></ul>
                        <i id='Y3NPR'><tr id='Y3NPR'><dt id='Y3NPR'><q id='Y3NPR'><span id='Y3NPR'><b id='Y3NPR'><form id='Y3NPR'><ins id='Y3NPR'></ins><ul id='Y3NPR'></ul><sub id='Y3NPR'></sub></form><legend id='Y3NPR'></legend><bdo id='Y3NPR'><pre id='Y3NPR'><center id='Y3NPR'></center></pre></bdo></b><th id='Y3NPR'></th></span></q></dt></tr></i><div id='Y3NPR'><tfoot id='Y3NPR'></tfoot><dl id='Y3NPR'><fieldset id='Y3NPR'></fieldset></dl></div>
                      • <tfoot id='Y3NPR'></tfoot>
                          <tbody id='Y3NPR'></tbody>

                          1. <legend id='Y3NPR'><style id='Y3NPR'><dir id='Y3NPR'><q id='Y3NPR'></q></dir></style></legend>