#asynclocal
Read more stories on Hashnode
Articles with this tag
1. 简介 普通共享变量: 在某个类上用静态属性的方式即可。 多线程共享变量 希望能将这个变量的共享范围缩小到单个线程内 无关系的B线程无法访问到A线程的值; [ThreadStatic]特性、ThreadLocal<T> 、CallContext 、AsyncLocal<T>...