Exemplo n.º 1
0
        private void BtnClick_Click(object sender, EventArgs e)
        {
            P = new ListBoxPrint(LbxOutput);
            MyDelegateInt delOne = this.MyFirstMethod;
            MyDelegateInt delTwo = this.MySecondMethod;

            int a = 5; delOne.Invoke(a);
            int b = 9; delTwo.Invoke(b);
            int x = 8; AnotherMethod(x, delOne);
            int y = 16; AnotherMethod(y, delTwo);
        }
Exemplo n.º 2
0
 private void AnotherMethod(int x, MyDelegateInt y)
 {
     P.Print($"AnotherMethod = {x}");
     y.Invoke(x);          //  y.DynamicInvoke(x);
 }