将 intPtr 添加到 int 在 .net Framework 3.5 上生成错误
我有这个代码:
lvItem.pszText = (IntPtr)(lpRemoteBuffer + Marshal.SizeOf(typeof(LV_ITEM)));
它在 4.0 上运行良好。
如果我将项目降级到 3.5,它会给我这个错误:
Operator '+' cannot be applied to operands of type 'System.IntPtr' and 'int'
知道如何修复它以使其在 3.5 上工作
,但我不知道为什么它在 4.0 上工作?
提前致谢
i have this code:
lvItem.pszText = (IntPtr)(lpRemoteBuffer + Marshal.SizeOf(typeof(LV_ITEM)));
it works fine on 4.0.
if i downgrade the project to 3.5 it gives me this error :
Operator '+' cannot be applied to operands of type 'System.IntPtr' and 'int'
any idea how do i fix that to make it work on 3.5
and i dont know why it works in 4.0 ?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的 - 如果您查看Addition 属性的文档 您将看到该运算符仅在 .NET 4 中引入。顺便说一句,您不应该需要强制转换。
在 .NET 3.5 上,您可能会使用:
当然,您需要希望您不在 32 位系统上使用指针超过
int.MaxValue
:)Yup - if you look at the documentation for the Addition property you'll see that operator was only introduced in .NET 4. You shouldn't need the cast, by the way.
On .NET 3.5 you could probably use:
Of course you then need to hope you're not on a 32-bit system with a pointer which goes over
int.MaxValue
:)IntPtr 在 .NET 4.0 之前不支持指针算术。如果您想以这种方式使用指针,则必须使用真正的指针来代替 IntPtr。
IntPtr didn't support pointer arithmetic prior to .NET 4.0. If you want to work that way with pointers, you have to use real pointers insteat of IntPtr.