I want to kill process by PID from android SP using C# usually I write in commande line as shown the screenshoot
adb shell
run-as "com.android.commands.monkey"
ps | grep "com.android.commands.monkey"
kill -9 73254
73254 is the PID but it will change every time.
So how do it with C#