I'm new to internet-based / network programming, and this is my first time using packets in any language.
I want to create a console application that lets people connect to a chat room and talk to people. For the moment, I just want to send a receive a packet.
I am using TcpListener to recieve and TcpClient to send. I want it to be simple for people using it and don't want them to have to port forward in order to use it.
Can I send TCP without port forwarding or will I have to use something else?
Thanks in advance.