Unity Cancel Invoke
CancelInvoke("MethodName");
// Cancels all invokes of this method for this monobehviour
Kaldrin
CancelInvoke("MethodName");
// Cancels all invokes of this method for this monobehviour
MethodInfo mi = this.GetType().GetMethod(methodName);
if(mi != null){
// Create Delegate
// Add to dictionary or other collection
}