votes
loop through string, if not found read more, if not found read more, if found, stop?
i'm reading a rs232 port and i call the readexisting: [code]string x = port.ReadExisting(); string y; if(x.Contains("\r")) { do something; } else { y = x + port.ReadExisting(); } [/code] this doesn't keep ...
