c# - Escape sequence for SSH keystroke -


i want send ssh command using

 sshcommand x = cssh.runcommand("ssh command");     

the command want send "control c". should declare or can send directly ? can please provide me shh command format of it.

you can use \x03 pass ctrl-c server. read more on ascii table.


Comments