Quantcast
Channel: sshnet Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1729

New Post: How to send results of client.RunCommand to a listbox WinForms C#

$
0
0
Instead of using
string output = client.RunCommand(command).ToString();
listBox1.Text = output;
use
var output = client.RunCommand(command)
listBox1.Items.Add(output.Result);

Viewing all articles
Browse latest Browse all 1729

Trending Articles