我的 .net 应用程序中有功能
Public Shared Function SerializeMessageByString(ByVal msg As Object) As Byte()
Using m As New MemoryStream()
Dim bin As New BinaryFormatter()
bin.Serialize(m, msg)
Return m.ToArray()
End Using
这个值将出现在我的 iPhone 应用程序中,我如何将二进制字节转换为字符串?