• <small id='fpxka'></small><noframes id='fpxka'>

  • <legend id='fpxka'><style id='fpxka'><dir id='fpxka'><q id='fpxka'></q></dir></style></legend>

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

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

        如何在 C# 中获取 unix 时间戳

        How to get the unix timestamp in C#(如何在 C# 中获取 unix 时间戳)
        <legend id='XNaAj'><style id='XNaAj'><dir id='XNaAj'><q id='XNaAj'></q></dir></style></legend>
        <i id='XNaAj'><tr id='XNaAj'><dt id='XNaAj'><q id='XNaAj'><span id='XNaAj'><b id='XNaAj'><form id='XNaAj'><ins id='XNaAj'></ins><ul id='XNaAj'></ul><sub id='XNaAj'></sub></form><legend id='XNaAj'></legend><bdo id='XNaAj'><pre id='XNaAj'><center id='XNaAj'></center></pre></bdo></b><th id='XNaAj'></th></span></q></dt></tr></i><div id='XNaAj'><tfoot id='XNaAj'></tfoot><dl id='XNaAj'><fieldset id='XNaAj'></fieldset></dl></div>

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

          1. <tfoot id='XNaAj'></tfoot>
                • <bdo id='XNaAj'></bdo><ul id='XNaAj'></ul>

                    <tbody id='XNaAj'></tbody>
                • 本文介绍了如何在 C# 中获取 unix 时间戳的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我已经查看了 stackoverflow,甚至查看了一些建议的问题,但似乎没有一个答案,您如何在 C# 中获得 unix 时间戳?

                  I have had look around stackoverflow, and even looked at some of the suggested questions and none seem to answer, how do you get a unix timestamp in C#?

                  推荐答案

                  在 C# 中使用 DateTime.UtcNow 并减去 1970-01-01 的纪元时间.

                  You get a unix timestamp in C# by using DateTime.UtcNow and subtracting the epoch time of 1970-01-01.

                  例如

                  Int32 unixTimestamp = (Int32)(DateTime.UtcNow.Subtract(new DateTime(1970, 1, 1))).TotalSeconds;
                  

                  DateTime.UtcNow 可以替换为您想要获取其 unix 时间戳的任何 DateTime 对象.

                  DateTime.UtcNow can be replaced with any DateTime object that you would like to get the unix timestamp for.

                  还有一个字段,DateTime.UnixEpoch,即MSFT 的文档记录很差,但可以替代 new DateTime(1970, 1, 1)

                  There is also a field, DateTime.UnixEpoch, which is very poorly documented by MSFT, but may be a substitute for new DateTime(1970, 1, 1)

                  这篇关于如何在 C# 中获取 unix 时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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# 纯数字文本框控件)
                  <i id='Bnce7'><tr id='Bnce7'><dt id='Bnce7'><q id='Bnce7'><span id='Bnce7'><b id='Bnce7'><form id='Bnce7'><ins id='Bnce7'></ins><ul id='Bnce7'></ul><sub id='Bnce7'></sub></form><legend id='Bnce7'></legend><bdo id='Bnce7'><pre id='Bnce7'><center id='Bnce7'></center></pre></bdo></b><th id='Bnce7'></th></span></q></dt></tr></i><div id='Bnce7'><tfoot id='Bnce7'></tfoot><dl id='Bnce7'><fieldset id='Bnce7'></fieldset></dl></div>

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

                      <legend id='Bnce7'><style id='Bnce7'><dir id='Bnce7'><q id='Bnce7'></q></dir></style></legend><tfoot id='Bnce7'></tfoot>

                          <tbody id='Bnce7'></tbody>

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