public void InstanceDelegateTest() { var delegateBasic = new DelegateBasic(); reference += delegateBasic.SayYourNameInstance; reference(); }
public void MuliticastDelegateTest() { var delegateBasic = new DelegateBasic(); reference += delegateBasic.SayYourNameInstance; reference += DelegateBasic.SayYourName; reference(); }