I was reading up on socket programming and i saw a sample code.
The thing i dont understand is the meaning of the dollar sign($).
byte[] outStream = System.Text.Encoding.ASCII.GetBytes(massConvoMsg + "$");
Does it mean that it is a string? or?
Thank you.
Yes, that is a string. It will simply be appended to the end of
massConvoMsgand the combined thing treated is single string.