Exemple #1
0
        internal Delegate MakeTheDelegate(MethodSubscriptionKind tsk)
        {
            Delegate result = Delegate.CreateDelegate(tsk.DelegateType, null, tsk.Method);

            return(result);
        }
Exemple #2
0
        public Delegate GetOrAdd(MethodSubscriptionKind tsk)
        {
            Delegate result = _cache.GetOrAdd(tsk);

            return(result);
        }