在 C# 中将 LDAP AccountExpires 转换为 DateTime

Convert LDAP AccountExpires to DateTime in C#(在 C# 中将 LDAP AccountExpires 转换为 DateTime)
本文介绍了在 C# 中将 LDAP AccountExpires 转换为 DateTime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将 18 位字符串从 LDAP AccountExpires 转换为普通日期时间格式.

I want to convert 18 digit string from LDAP AccountExpires to Normal Date Time Format.

129508380000000000 >> 2011 年 5 月 26 日

129508380000000000 >> May 26 2011

我通过以下链接获得了上述转换.

I got the above conversion from using the following link.

http://www.chrisnowell.com/information_security_tools/date_converter/Windows_active_directory_date_converter.asp?pwdLastSet,%20accountExpires,%20lastLogonTimestamp,%20lastLogon,%20and%20badPasswordTime

我尝试使用 DateTime.Parse 或 Convert.ToDateTime 进行转换.但没有成功.

I tried to convert by using DateTime.Parse or Convert.ToDateTime. But no success.

有人知道如何转换吗?非常感谢.

Anyone know how to convert it? Thanks very much.

推荐答案

编辑答案

根据 参考,它是自 1601 年 1 月 1 日 UTC 以来的刻度数,它描述了 1601 年的意义.良好的背景阅读.

Editedanswer

It's the number of ticks since Jan-01-1601 in UTC, according to Reference, which describes the significance of the year 1601. Good background reading.

var accountExpires = 129508380000000000;
var dt = new DateTime(1601, 01, 01, 0, 0, 0, DateTimeKind.Utc).AddTicks(accountExpires);

接受的原始答案

这是自 1601 年 1 月 2 日以来的滴答数.

OriginalAcceptedAnswer

It's the number of ticks since Jan-02-1601.

DateTime dt = new DateTime(1601, 01, 02).AddTicks(129508380000000000);

这篇关于在 C# 中将 LDAP AccountExpires 转换为 DateTime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)