public static R  CallWithTimeout<P, R>(Func<P, R> action, P p, out bool isTimeout, int millisecondsTimeout = Timeout.Infinite)
            Thread threadToKill = null;
            R r = default(R);
            Action wrappedAction = () =>
                threadToKill = Thread.CurrentThread;
                r = action(p);
            IAsyncResult result = wrappedAction.BeginInvoke(null, null);
            if (result.AsyncWaitHandle.WaitOne(millisecondsTimeout))
                wrappedAction.EndInvoke(result);
                isTimeout = false;
                //threadToKill.Abort();
                //throw new TimeoutException();
                Action abortAction = delegate
                    threadToKill.Abort();
                abortAction.BeginInvoke(null, null);
                isTimeout = true;
            return r;
public string FiveSecondMethod(int t)
           // p = "1";
            Thread.Sleep(t);
            return "false" ;
private void button3_Click(object sender, EventArgs e)
            int t1 = int.Parse(textBox1.Text);
            bool btime=false;
            //  MyMethodB<string>(new Func<string, int>(MyMethodA), "feige");
            //   bool b =  CallWithTimeout<int,bool>(new Func<int, bool>(FiveSecondMethod), t1,out btime, t1);
            string s= CallWithTimeout(FiveSecondMethod, t1, out btime, t1);

在这里注意,返回值必须统一类型,R类型即为我们所有运行函数的类型。

下面这个是我自己改的,不知道是不是符合语法,或者是不是写的有问题,嗯,总之就这么用了,传两个参数。

        static void CallWithTimeout2(Action<int ,string> action ,int CIO,string num, int timeoutMilliseconds)
            Thread threadToKill = null;
            Action wrappedAction = () =>
                threadToKill = Thread.CurrentThread;
                action(CIO, num);
            IAsyncResult result = wrappedAction.BeginInvoke(null, null);
            if (result.AsyncWaitHandle.WaitOne(timeoutMilliseconds))
                wrappedAction.EndInvoke(result);
                threadToKill.Abort();
              //  throw new TimeoutException();
                return;
   private void button10_Click(object sender, EventArgs e)
            CallWithTimeout2(WriteCar6, 30, "0040", 1000);
            readCX = 5;
            //Cx6 = 1;
            //   string Car6 = string.Empty;
            //    CIODZ = 30;   //CIO30.06      车型6
            //   Car6 = getres1(("0040").ToString()).ToString();
            //if (Car6 == "")
            //    MessageBox.Show("写入不成功,请重新操作!");
  public void WriteCar6(int CIO ,string n)
            string Car1 = string.Empty;
            CIODZ = CIO;   //CIO30.01      车型1
            Car1 = getres1((n).ToString()).ToString();

这里应该是可以简写的,知道的帮我修改下,谢谢。getres1()是一个处理算法,太多不写了。

以上内容均为剽窃后修改。

原内容参考:https://www.cnblogs.com/CoreXin/p/12303622.html

public static R CallWithTimeout&lt;P, R&gt;(Func&lt;P, R&gt; action, P p, out bool isTimeout, int millisecondsTimeout = Timeout.Infinite) { Thread threadToKill = null; R r = default(R); Action wrappedAction = (.
 自己捣腾了一天,弄了一个修改软件过期的小程序,主要是自己有几款有时间限制的软件,每次改时间很麻烦。有了这个程序就可以一劳永逸了。 前提:只适用于修改操作系统时间后,程序就能够正常使用的那种软件。如Lingoes,reflector,这两款我测试是可以的。 在Win7下必需用管理员的方式启动。 思路很简单: 1,修改操作系统时间到软件过期前。 2,启动软件。 3,改回操作系统时间。 string input = " "; Task.Factory.StartNew(() => { input = Console.ReadLine(); }).Wait(10 * 1000); Console.WriteLine(input);...
这些是我最近整理的面试题,难度不分先后,其实也算不上面试题,都是开发过程中遇到的坑,之前发布的几道面试题,本来是想公布答案的,但是想了想如果公布了就没什么意思了 1 写出以下逻辑,要求每秒钟调用一次proc并保证程序不退出(什么手写代码??? )package main func main() { go func() { // 1 在这里需要你写算...
先上结论:对于 Task.Delay() 的取消,需要去处理异常 TaskCanceledException ,否则会将整个Task取消。 执行以下代码,Cancellation.Cancel() 后不会有"t1 完成等待" 出现。 static CancellationTokenSource Cancellation = new CancellationTokenSource(); static void Main(string[] args)