controlling c# game using arduino buttons

doesn't seem to work, i added the code:

private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
switch (serialPort1.ReadChar())
{
case 'e':
Start.PerformClick();
break;
}
}