C
C#4d ago
Supercool

how do I send data back and forth

I am new to c# and im using .net and I need help sending data back and forth.
9 Replies
ero
ero4d ago
please provide more info. what type of project are you working on. where are you sending information. what type of information. where is coming from. who's receiving the information. how are you serializing it.
Supercool
SupercoolOP4d ago
I'm trying to make an admin system I'm trying to send data back and forth to run commands on employees work computers the administration is receiving the data
leowest
leowest4d ago
that doesnt really give us any context what so ever are you writing a tcp client server? are you working with an web API? provide some code $paste
MODiX
MODiX4d ago
If your code is too long, you can post to https://paste.mod.gg/, save, and copy the link into chat for others to see your shared code!
Supercool
SupercoolOP4d ago
namespace cool_admin_tool { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string ip = richTextBox1.Text; string port = richTextBox2.Text; //I need to connnect the stuff and open a new form if the connection is successful to send data } } }
leowest
leowest4d ago
Use Sockets to send and receive data over TCP - .NET
Learn how the Socket class exposes socket network communication functionality in .NET.
leowest
leowest4d ago
its very straight forward
Supercool
SupercoolOP4d ago
ok how do i use strings to connect
leowest
leowest4d ago
if you dont understand the code in the link above I suggest you start with something simpler like the fundamentals of c# first https://learn.microsoft.com/en-us/shows/csharp-fundamentals-for-absolute-beginners/

Did you find this page helpful?