Delegate.CreateDelegate returns "ArgumentException: method arguments are incompatible"
Any idea what I did wrong here ? My method seems to be of the correct type
4 Replies
delegates for instance methods need a reference to the instance they should be called on
Looks like you'd want to use this overload instead.
Thanks, I was indeed using the wrong overload, thanks for the info too !