c# 托管对象与InPtr互转
2020-12-13 20:22
阅读:367
标签:blog ar sp div log bs as tt nbsp c# 托管对象与InPtr互转 标签:blog ar sp div log bs as tt nbsp 原文地址:http://www.cnblogs.com/uucode/p/4127117.html
GCHandle thisHandle = GCHandle.Alloc(this);//this 是 MyClass类型
IntPtr thisptr = GCHandle.ToIntPtr(thisHandle);
GCHandle thisHandle = GCHandle.FromIntPtr(thisptr );
MyClass thisObject = (MyClass)thisHandle.Target;
上一篇:使用API的VC-定时器
下一篇:unity之龙骨动画
评论
亲,登录后才可以留言!