Hi!
I want to join 2 strings, but it has been impossible.
I have this:
i = socket.Receive(buffer);
recibido = System.Text.Encoding.UTF8.GetString(buffer)
Buffer contains: "C:"
I want to add the "\\" to the string so i have tried to do:
recibido = recibido + "\\".
But no way, when y print the result it shows again "C:"
I have also tried using StringBuilder:
http://msdn.microsoft.com/en-us/library/ms228504(v=vs.80).aspx
But is the same it just print "C:"
I ve also tried changing the "\\" for any other thing like "hello"... and it still shows "C:".