Why do you need it and how to use it? What does the next entry mean?
IntPtr pin, pout;
This is an integer representing a pointer to anything, i.e. storing the address. In .NET, a special data structure is used, not just int, to ensure compatibility between 32-bit and 64-bit systems. Usually this type is used to work with imported functions that use pointers.
Source: https://ru.stackoverflow.com/questions/16226/
All Articles