I read in a Byte Array
generated from a function called from an external DLL file and then converted (encoded) it into a String. In the Locals window (shown below), msg
does not have a trailing double-quote.
Is this a bug, glitch, or a sign something is wrong?
Code:
Dim msgC(32) As Byte
Dim msg As String, length As Integer = 32
HW(msgC, length)
msg = System.Text.Encoding.Default.GetString(msgC)
Dim x As String = "hi", y As String = " ho"
Dim z As String = x & y
Locals:
msg "Hello World String
msgC {Length=33} Byte()
x "hi" String
y " ho" String
z "hi ho" String