将 .NET long 转换为无符号 8 字节整数
为了在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 long 为负数,则简单的强制转换可能会导致问题,并可能导致 OverflowException。您需要使用未选中语法以确保其正确铸造。
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.
将
long
转换为ulong
。更多信息此处。
Cast the
long
to aulong
.More info here.