就這麼簡單,我怎麼能在VBNET轉換一個UnmanagedMemoryStream到字節數組: Dim bytes() As Byte = My.Resources.AudioFile
例外: Value of type 'System.IO.UnmanagedMemoryStream' cannot be converted to '1-dimensional array of Byte'.
我分配IntPtr指向要用於非託管代碼的結構數組。我發現在這個問題上很多的資源,這裏是我的最後一個方法(似乎運作良好): public IntPtr ArrayToPtr<T>(T[] array)
{
int size = array.Length;
int elemSize = Marshal.SizeOf(typeof(T));
IntPtr result