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
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.
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
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
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!
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
}
}
}
for a start u could look into socket https://learn.microsoft.com/en-us/dotnet/fundamentals/networking/sockets/socket-services
Use Sockets to send and receive data over TCP - .NET
Learn how the Socket class exposes socket network communication functionality in .NET.
its very straight forward
ok how do i use strings to connect
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/