2020年4月27日

WM_COPYDATA 进程间通信

摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文

posted @ 2020-04-27 17:47 jshchg 阅读(251) 评论(0) 推荐(0) 编辑

C# 托管内存与非托管内存之间的转换

摘要: c#有自己的内存回收机制,所以在c#中我们可以只new,不用关心怎样delete,c#使用gc来清理内存,这部分内存就是managed memory,大部分时候我们工作于c#环境中,都是在使用托管内存,然而c#毕竟运行在c++之上,有的时候,(比如可能我们需要引入一些第三方的c++或native代码 阅读全文

posted @ 2020-04-27 12:04 jshchg 阅读(1505) 评论(0) 推荐(0) 编辑

导航