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
 
* "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.
 
Back
Top