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.

18 lines
423 B
C#

using MultiThreadingStudy.Core;
namespace MultiThreadingStudy.ConsoleApp
{
public class Program
{
static void Main(string[] args)
{
2 years ago
Console.WriteLine("多线程学习");
ThreadLocalStorage.Run();
ThreadLocalStorage.UseDataSlot();
ThreadLocalStorage.UseThreadStaticAttribute();
ThreadLocalStorage.UseThreadLocalClass();
}
}
}