So i have 2 classes named A and B.
A has a method "public void Foo()".
B has several other methods.
What i need is a variable in class B, that will be assigned the Foo() method of class A. This variable should afterwards be "executed" (=> so it should execute the assigned method of class A).
How to do this?