Is this even possible?
I dont see any reference to it in:
So my question is how would I go about serializing a string over the network?
stream.Serialize(ref username);
Gives the error: error CS1503: Argument 1: Cannot convert type ref string' to
bool’
if the type isn’t mentioned you can’t do it through the serialization, no
but there are RPCs, cause strings don’t need to be view serialized, they are commonly send for specific actions, which is what RPCs are for cause the lenght of the data you serialize in the onserializeview must be fixed, you can’t add stuff once and not later or add it at will. either always or never
if you use a fixed size will serializing a string broken up into chars work?