hey everyone, I'm having a little bit of trouble with function pointers. I understand how they work in general but I can't seem to get them working using methods instead of functions. Is this expected behavior and is there any way to get around this? Thanks!
As an example, I want to do something like this,
but it doesn't appear to work.
As an example, I want to do something like this,
Type test Method increment(a) Return a + 1 End Method End Type t:test = New test Local l(a) = t.increment Print l(1)
but it doesn't appear to work.