How to catch serial.println("a"); in vb.net?

Hi guys can you help me how to catch serial.println in vb.net?

Arduino Code

if (buttonState == HIGH) {
// turn LED on:
digitalWrite(ledPin, HIGH);
Serial.println("a");
delay(100);
}
else {
// turn LED off:
digitalWrite(ledPin, LOW);
Serial.println("b");
}

And use the VB Serial event method to catch the incoming byte when they arrive.