码迷,mamicode.com
首页 > Windows程序 > 详细

c# 托管对象与InPtr互转

时间:2014-11-27 21:58:34      阅读:490      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   sp   div   log   bs   as   tt   nbsp   

 

  GCHandle thisHandle = GCHandle.Alloc(this);//this 是  MyClass类型
  IntPtr thisptr = GCHandle.ToIntPtr(thisHandle);

  GCHandle thisHandle = GCHandle.FromIntPtr(thisptr );
  MyClass thisObject = (MyClass)thisHandle.Target;

  

c# 托管对象与InPtr互转

标签:blog   ar   sp   div   log   bs   as   tt   nbsp   

原文地址:http://www.cnblogs.com/uucode/p/4127117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!