c# AsyncLocal<T> ThreadLocal<T> ExecutionContext

2021/7/8 1:05:41

本文主要是介绍c# AsyncLocal<T> ThreadLocal<T> ExecutionContext,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

using System;
using System.Threading;

namespace Cmd
{
    class Program
    {
        static void Main(string[] args)
        {
            var asynclocal = new AsyncLocal<int>();
            var threadlocal = new ThreadLocal<int>();

            asynclocal.Value = 1;
            threadlocal.Value = 2;

            //ExecutionContext.SuppressFlow();

            var timer = new Timer(state =>
            {
                Console.WriteLine("Task Threading num: {0}, state: {1}, asynclocal: {2}, threadlocal: {3}", Thread.CurrentThread.ManagedThreadId, state, asynclocal.Value, threadlocal.Value );
            }, 1, TimeSpan.FromSeconds(0), TimeSpan.FromSeconds(1));

            //ExecutionContext.RestoreFlow();

            Thread.Sleep(20000);

            Console.WriteLine("Hello World!");
        }
    }
}


这篇关于c# AsyncLocal<T> ThreadLocal<T> ExecutionContext的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程