Something like this ?
using (var client = new SshClient(host, username, password))
{
client.Connect();
client.RunCommand("reset");
client.Disconnect();
}