Function pointers in .NET?

S

Scott Kilbourn

Hi,

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

Thanks
 
H

Herfried K. Wagner [MVP]

* "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

Top