Something like this:
bool fun(int i) {}
alias (signature of fun) DelegateType;
DelegateType _delegate = delegate(int i) { return i == 0; };
Is it possible to get the signature of a function and make a delegate
type from it?
- delegate type from function signature Nub Public
- Re: delegate type from function signature Robert Clipsham
- Re: delegate type from function signature Nub Public
