Through using IntelliSense and looking at other people's code, I have come across this IntPtr type; every time it has needed to be used I have simply put null or IntPtr.Zero and found most functions to work. What exactly is it and when/why is it used?
|
|
|
It's a "native (platform-specific) size integer." It's internally represented as |
|||||||||||||||||
|
|
It's a value type large enough to store a memory address as used in native or unsafe code, but not directly usable as a memory address in safe managed code. You can use IntPtr.Size to find out whether you're running in a 32-bit or 64-bit process, as it will be 4 or 8 bytes respectively. |
|||||
|
|
Here's an example: I'm writing a C# program that interfaces with a high speed camera. The camera has its own driver that acquires images and loads them into the computer's memory for me automatically. So when I'm ready to bring the latest image into my program to work with, the camera driver provides me with an IntPtr to where to image is ALREADY stored in physical memory, so I don't have to waste time/resources creating another block of memory to store an image that's in memory already. The IntPtr just shows me where the image already is. |
|||||||||
|
|
MSDN tells us:
http://msdn.microsoft.com/en-us/library/system.intptr(VS.71).aspx |
|||
|
|
|
Well this is the MSDN page that deals with The first line reads:
As to what a pointer or handle is the page goes on to state:
A pointer is a reference to an area of memory that holds some data you are interested in. A handle can be an identifier for an object and is passed between methods/classes when both sides need to access that object. |
||||
|
A direct interpretationAn IntPtr is an integer which is the same size as a pointer. You can use IntPtr to store a pointer value in a non-pointer type. This feature is important in .NET since using pointers is highly error prone and therefore illegal in most contexts. By allowing the pointer value to be stored in a "safe" data type, plumbing between unsafe code segments may be implemented in safer high-level code. The size of IntPtr is platform-specific, but this detail rarely needs to be considered, since the system will automatically use the correct size. In my opinion, the name "IntPtr" is confusing. My initial guess was that "IntPtr" was a pointer to an integer. The MSDN documentation of IntPtr goes into somewhat cryptic detail without ever giving a clear explanation of the name. An alternative perspectiveAn
In other words, an In order to dereference an |
|||||
|
