Olexandr Kovalchuk
Results
2
issues of
Olexandr Kovalchuk
The data is not received entirely, but in parts. The transmitted 100 bytes are received not at one time, but three times, 32 bytes each and once 4 bytes. This...
Example: object test; int i = 12; test = i; MessagePackFormatter formatter = new MessagePackFormatter(); byte[] bytes = formatter.Serialize(test); test = formatter.Deserialize< object >(bytes); Debug.Log((int)test); ---- error----- Debug.Log(Convert.ToInt32(test)); - ---works---...