本文介绍了将struct handle从managed转换为非托管C ++ / CLI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C#中,我定义了一个结构:

In C#, I defined a struct:

并将保持托管类型。如果你想要一个真正的非托管类型,你必须定义一个匹配托管结构。 

But MyObject is and will stay a managed type. If you want a truly unmanaged type, you have to define one that matches the managed struct.

只是想知道,为什么在托管结构中使用非托管LPWSTR?

Just wondering, why are you using unmanaged LPWSTR in a managed struct?

这篇关于将struct handle从managed转换为非托管C ++ / CLI的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:20