gpt4 book ai didi

c# - 如何在 C# 中将 UIntPtr 对象转换为 IntPtr?

转载 作者:太空狗 更新时间:2023-10-29 20:53:33 27 4
gpt4 key购买 nike

我需要在我的 C# .NET 2.0 应用程序中将 UIntPtr 对象转换为 IntPtr 对象。如何做到这一点?我不认为它像这样简单:

UIntPtr _myUIntPtr = /* Some initializer value. */
object _myObject = (object)_myUIntPtr;
IntPtr _myIntPtr = (IntPtr)_myObject;

最佳答案

这应该适用于 x86 和 x64

IntPtr intPtr = unchecked((IntPtr)(long)(ulong)uintPtr);

关于c# - 如何在 C# 中将 UIntPtr 对象转换为 IntPtr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3762113/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com