是否可以在shell脚本中停止服务,例如" watch"
例如,如果我有以下代码,我希望它无限制地工作。
string str = null;
str = "CSharp Top11111 10 BOOKS";
if (str.Contains("top") == true)
{
Console.WriteLine("The string Contains() 'TOP' ");
}
else
{
Console.WriteLine("The String does not Contains() 'TOP'");
}
代码在关机时间停止,如何停止并执行以下脚本?