I'm using this code to return some string from a tcpclient but when the string comes back it has a leading " character in it.  I'm trying to remove it but the Len() function is reading the number of bytes instead of the string itself.  How can I alter this to give me the length of the string as I would normally use it and not of the array underlying the string itself?
 Dim bytes(tcpClient.ReceiveBufferSize) As Byte
 networkStream.Read(bytes, 0, CInt(tcpClient.ReceiveBufferSize))
 ' Output the data received from the host to the console.'
 Dim returndata As String = Encoding.ASCII.GetString(bytes)
 Dim LL As Int32 = Len(returndata)
Len() reports the number of bytes not the number of characters in the string.