Let's say add another function in class 2 to call the EventReceived. Eg,
public void callEventReceive(int a)
{
if(EventReceived != null)
{
EventReceived(a);
}
}
May i know how to call the callEventReceive in class2 in order to fire the OnEventReceived in class1 for testing the code inside? Thanksss.