I am new to C#. While displaying text, C# prints every piece of text in a new line. But, I would like have all the pieces in the same line like Four Hundred Fifty Eight
Four Hundred Fifty Eight
You could terminate the string forcibly, like this
Debug.Print("{0:X} \0", byteReceived[0]);
Then new .Print after that would be in the same line.