i

private void button1_Click(object sender, EventArgs e)
{
Ping myPing = new Ping();
PingReply reply = myPing.Send(textBox1.Text, 1000);
textBox9.Text = "REPLY FORM :- " + reply.Address + " BYTES :- " + reply.Buffer.Length + " Time :- " + reply.RoundtripTime + " TTL :- " + reply.Options.Ttl;
}
i try to continue muliti line but show me one line
Guest UserPosted Apr 19, 2021, 3:51 PM
Amit GuptaPosted Apr 19, 2021, 3:39 AM
Guest UserPosted Apr 18, 2021, 8:44 PM
Salman BegPosted Apr 17, 2021, 10:39 PM