"Uses of intptr in .net"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wingsganesh
    New Member
    • Nov 2007
    • 16

    "Uses of intptr in .net"

    hi guys,

    Am new in Mobile development. I know intptr is the same concept for Poiters in C. But I dont know where we use this concept, please any one can give me clear info for intptr......... ...........
  • markmcgookin
    Recognized Expert Contributor
    • Dec 2006
    • 648

    #2
    Originally posted by wingsganesh
    hi guys,

    Am new in Mobile development. I know intptr is the same concept for Poiters in C. But I dont know where we use this concept, please any one can give me clear info for intptr......... ...........
    Is it not used for jumping into DLL files at "Entry points" e.g.

    Code:
    private IntPtr _hRecorder;
    _hRecorder = new IntPtr();
    _hRecorder = VoiceRecorder_Create(_VoiceRecPtr);
    I have only used it in the Open Source VoiceRecorder class, so haven't had too much experience.

    Comment

    Working...