本文介绍了分配“非托管"C#中的内存的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在用 C# 编写一个使用 C++ 库的程序,出于某种原因,我需要分配一个非托管缓冲区以将其传递给 lib.有没有办法在 c# 中做到这一点?基本上我只需要在 C# 中做一个 malloc ......
I'm writting a program in c# that uses a C++ library, and for some reason I need to allocate an unmanaged buffer to pass it to the lib. Is there a way to do this in c# ?Basically I would just need to do a malloc in C#...
谢谢
推荐答案
试试这个:
using System;
using System.Runtime.InteropServices;
class Example
{
static void Main()
{
IntPtr pointer = Marshal.AllocHGlobal(1024);
}
}
这使用 Marshal.AllocHGlobal
方法:
This uses the Marshal.AllocHGlobal
method:
使用指定的字节数从进程的非托管内存中分配内存.
这篇关于分配“非托管"C#中的内存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!