What is void** in C#?

前端 未结 6 1152
失恋的感觉
失恋的感觉 2021-01-12 01:42

I\'m looking through the source of a C# program that uses a library written in C. I came across this line and was unsure what it was:

cvbimUNSAFE.GetImageVPA         


        
6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-12 02:18

    That's not C#. It looks like C++. In that case, a void** is a pointer to a void pointer.

提交回复
热议问题