You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
484 B
C#
19 lines
484 B
C#
using MultiThreadingStudy.Core;
|
|
|
|
namespace MultiThreadingStudy.ConsoleApp
|
|
{
|
|
public class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("多线程学习");
|
|
|
|
// ThreadLocalStorage.Run();
|
|
// ThreadLocalStorage.UseDataSlot();
|
|
// ThreadLocalStorage.UseThreadStaticAttribute();
|
|
// ThreadLocalStorage.UseThreadLocalClass();
|
|
ThreadLocalStorage.UseAsyncLocalClass();
|
|
|
|
}
|
|
}
|
|
} |