https://stackoverflow.com/questions/25953887/how-to-use-unsafe-code-in-safe-contex

I am not sure if you need unsafe code in that case (see answer of @mybirthname).

But when unsafe code is needed, it can be enabled in Project properties.

  • In the main menu, click Project and then <ProjectName> properties...
  • Click on the Build page.
  • Select Allow unsafe code.

Or one can specify /unsafe compiler option explicitly.

 

无法使用unsafe,需要在项目属性里打开。

测试了一下IntPtr的大小是4字节

javascript:void(0)

 public void TestChuck()
        {
            unsafe
            {

                Console.WriteLine(sizeof(IntPtr));
            }
        }