将 .NET long 转换为无符号 8 字节整数

发布于 2024-09-03 07:35:52 字数 83 浏览 5 评论 0原文

为了在 Active Directory 中设置值,我想将 long 转换为无符号 8 字节整数,以便分配给 AD 属性。

我该怎么做?

For the purposes of setting a value in Active Directory I would like to convert a long to an unsigned 8-byte integer, for assignment to an AD property.

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明媚殇 2024-09-10 07:35:52

如果 long 为负数,则简单的强制转换可能会导致问题,并可能导致 OverflowException。您需要使用未选中语法以确保其正确铸造。

ulong myUnsignedValue = unchecked( (ulong)originalLongValue );

A simple cast can cause problems if the long is negative and may result in an OverflowException. You'll need to use the unchecked syntax to ensure it is cast properly.

ulong myUnsignedValue = unchecked( (ulong)originalLongValue );
つ低調成傷 2024-09-10 07:35:52

long 转换为 ulong

更多信息此处

Cast the long to a ulong.

More info here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文