Dim ms As MemoryStream = New MemoryStream(10 0)
ms.WriteByte("= ")
triggers invalid cast error ...
but
ms.WriteByte(As c("="c))
does not ...
but isn't Asc() producing a 2-byte representation of a Char
ms.WriteByte("= ")
triggers invalid cast error ...
but
ms.WriteByte(As c("="c))
does not ...
but isn't Asc() producing a 2-byte representation of a Char
Comment