Is it possible to create a template which only accepts functions or
delegates like this example:
class Example(T : void function()) { // or ..(T : void delegate())..
T callback;
}
Where T is a function or a delegate...
Thanks for every suggestion!