A cross language implementation of TCP sockets in Java and C#. The example shows how to send Strings and integers.
How to use
- Start the Java server
- Start the C# client
- Write message in console to send to the server
This is just a vary basic implementation of sockets with C# and Java that I made to help others. The difficulties of sending data from C# to Java or back is to understand that Java uses Big-Endian for bytes order while C# uses LittleEndian.