Here is the sample:
Dim TestString As String = "Hello," & Chr(0) & "World"
MsgBox(TestString, , "TestString.Length=" & TestString.Length.ToString)
Result - Messagebox shows "Hello," with title says TestString.Length=12
I guess the chr(0) is treated as the end of zero terminated string, but it's not what i want.
What the right method to operate with Chr(0) ?