if found out that ssh.net really don't apply to a ssh session
using (var client = new SshClient(comboBox1.Text, username.Text, password.Text))
{
client.Connect();
if (client.IsConnected)
{
client.RunCommand("system reboot");
client.Disconnect();
}
but it says connected and run the command