我想在 serialport_DataReceived 事件中运行一个方法。
public void Draw(byte[] data);
private void myPort_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
this.Invoke(new EventHandler(DrawingAudioData(data)));
}
这是行不通的。它给出了一个错误,说“预期的方法名称”。我能做些什么?