Hi,
This time I need to declare a function like this:
[pseudocode]
public void MyFunc(FuncAddress otherFunc)
Now, since otherFunc can be a whatever function with a whatever prototype, and C# does not support - I think - function-pointers, how can I do this?
I saw the delegate keywords, but I don't understood its use and if it makes for me.
Some examples?
Thanx all again


Reply With Quote