Function pointers in .NET?

  • Thread starter Thread starter Scott Kilbourn
  • Start date Start date
S

Scott Kilbourn

Hi,

Can anyone tell me if there's any easy way to set up a function pointer in
VB.NET?

Thanks
 
Thanks!

I never realized that delegates could do so much... :)
 
* "Scott Kilbourn said:
Can anyone tell me if there's any easy way to set up a function pointer in
VB.NET?

Delegates (type-safe function pointers). When working with the Win32
API, you may want to have a look at
'<MarshalAs(UnmanagedType.FunctionPtr)>' too.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top