VB.NET receiving data from Leonardo

Hello everyone

All I want to do is get a msgbox to show on my vb.net application that contains the message that the arduino leonardo sent via serial.

arduino code:

void setup() {
Serial.begin(9600);
}

void loop() {
Serial.write("Hello");
}

Does anyone know of a vb.net code that i can use?

Thanks