Exemplo n.º 1
0
        public void FireDelegateFunc()
        {
            Dictionary<string, Func<DateTime, bool>> test = new Dictionary<string, Func<DateTime, bool>>();
            Func<DateTime, bool> delegado1 = DevolverTrue;
            DateTime fechax = new DateTime(1985, 1, 1);
            test.Add("val", delegado1);
            Dictionary<string, string> test2 = new Dictionary<string, string>();
            test["val"].Invoke(fechax);
            DelegateSubscriber delegateSubscriber = new DelegateSubscriber();
            Func<string, int, long> myDel = delegateSubscriber.ListeningMethod1;
            //myDel += delegateSubscriber.ListeningMethod2;

            long j = myDel("juan", 1);
            long x = myDel("valor1", 1);
        }
Exemplo n.º 2
0
        public void FireDelegateFunc()
        {
            Dictionary <string, Func <DateTime, bool> > test = new Dictionary <string, Func <DateTime, bool> >();
            Func <DateTime, bool> delegado1 = DevolverTrue;
            DateTime fechax = new DateTime(1985, 1, 1);

            test.Add("val", delegado1);
            Dictionary <string, string> test2 = new Dictionary <string, string>();

            test["val"].Invoke(fechax);
            DelegateSubscriber       delegateSubscriber = new DelegateSubscriber();
            Func <string, int, long> myDel = delegateSubscriber.ListeningMethod1;
            //myDel += delegateSubscriber.ListeningMethod2;

            long j = myDel("juan", 1);
            long x = myDel("valor1", 1);
        }