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

c# 对象,IntPtr互转

时间:2020-06-17 15:33:19      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:int   ring   handle   str   rom   from   free   class   string   

        struct aa
        {
            public string a;
            public string b;
        }
            aa p = new aa();
            p.a = "1";
            p.b = "1";
            //对象转IntPtr
            var handle = GCHandle.Alloc(p);
            var ptr = GCHandle.ToIntPtr(handle);
            //IntPtr转对象
            var a = GCHandle.FromIntPtr(ptr)
                .Target;
            handle.Free();

 

c# 对象,IntPtr互转

标签:int   ring   handle   str   rom   from   free   class   string   

原文地址:https://www.cnblogs.com/Angel-szl/p/13152629.html

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