How can we declare a void pointer in C#?
void* identifier;
But it needs to be in unsafe as:
unsafe { void* identifier; }
And unsafe code has to have been allowed for the project.
1.4m articles
1.4m replys
5 comments
57.0k users