.NET(C#)平台叫用:還是轉換字串,用IntPtr參數和Marshal類

來源:互聯網
上載者:User

前面一篇文章:.NET(C#)平台叫用:DllImportAttribute.CharSet和字串封送編碼,介紹了平台叫用時封送字串和DllImportAttribute.CharSet的各種關係。事實上還有另外一種方法,因為字串本身也是指標,那麼在調用聲明時用IntPtr(而不是String類型)也可以,此時則需要我們手動對IntPtr做處理。使用的則是Marshal類的StringToHGlobal方法將託管堆中的字串轉換成一個非託管堆中的指標。注意需要用Marshal.FreeHGlobal來釋放非託管堆積指標的記憶體空間。

 

還是比如MessageBox函數:

//字串參數為IntPtr

[DllImport("user32.dll")]

public static extern int MessageBox(int hWnd, IntPtr text, IntPtr caption, uint type);

 

static void Main()

{

    //字串

    var str = "hehe";

    //在非託管堆中建立指標

    var ptr = Marshal.StringToHGlobalAnsi(str);

    //平台叫用MessageBoxA

    MessageBox(0, ptr, IntPtr.Zero, 0);

    //清理

    Marshal.FreeHGlobal(ptr);

}

 

上面是ANSI的調用,如果是Unicode,用Marshal.StringToHGlobalUni。如果CharSet是Auto的話,用Marshal.StringToHGlobalAuto來將CLR字串轉換成平台相關的非託管字串形式。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.