Creating.
delegate void Delegate();
Delegate List;
Update.
void Update () { List(); }
Adding and removing. Edit is a function.
List += Edit;
List -= Edit;
Is it possible to check if List, for example has Edit?
Is it also possible to use arguments, for example:
List += Edit(10);
↧