c# 托管对象与InPtr互转

2020-12-13 20:22

阅读:367

标签: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


评论


亲,登录后才可以留言!