What is difference between unsafe code and unmanaged code in C#?

前端 未结 5 2267
走了就别回头了
走了就别回头了 2021-02-12 23:14

What is difference between unsafe code and unmanaged code in C#?

5条回答
  •  滥情空心
    2021-02-12 23:29

    Unsafe code in C# allows the use of pointers. In the context of the CLR, there is no unmanaged code in C#.

提交回复
热议问题