I have to read serialport and store that response which is a sequence of six bytes in a string variable .I am trying to store the response in string variable by concatenate the response. But only the last byte from the response is getting stored.
int response = port.ReadByte();
string responseString = "";
responseString += response.ToString();
Console.WriteLine(responseString);