G
Guest
Coming from a C/C++ background, how would I pass a function pointer to a
function? I want to write a function that handles certain thread spawning.
Here's what I'm trying to invision:
function( thesub as <functionptr?> )
dim t as new system.threading.thread( _
new system.threading.threadstart( Addressof thesub ))
....
How can I get something like that going in VB.Net?
function? I want to write a function that handles certain thread spawning.
Here's what I'm trying to invision:
function( thesub as <functionptr?> )
dim t as new system.threading.thread( _
new system.threading.threadstart( Addressof thesub ))
....
How can I get something like that going in VB.Net?