Hi, I'm totally confused as to how to invoke an existing event. I have an event of the form;
where DataReceivedEventsArgs is a byte[]. I want to invoke that event from another sub, passing my data into it.C# Code:
private void DataReceived(object sender, DataReceivedEventArgs e)
So what I'm trying to do is trigger that event using my available data, so something like this;
How can I do this?C# Code:
DataReceived(this, MyByteArray)




Reply With Quote