Example #1
0
        public void UnSubscribe(DelegatesMimicinEvents.Joke jokeMethod)
        {
            Delegate mainDel = System.Delegate.Remove(this.jokeDelegate, jokeMethod);

            this.jokeDelegate = mainDel as DelegatesMimicinEvents.Joke;
        }
Example #2
0
        public void Subscribe(DelegatesMimicinEvents.Joke jokeMethod)
        {
            Delegate mainDel = System.Delegate.Combine(jokeMethod, this.jokeDelegate);

            this.jokeDelegate = mainDel as DelegatesMimicinEvents.Joke;
        }