合并主线最近几年来的主要更新,重点推进TinyHttpClient,替代HttpClient
大石头 authored at 2023-03-08 18:39:12
463.00 B
X_NET20
using System;
using System.Collections.Generic;

namespace System.Threading
{
	internal static class TimerManager
	{
		private static readonly Dictionary<Timer, object> s_rootedTimers = new();

		public static void Add(Timer timer)
		{
			lock (s_rootedTimers)
			{
                s_rootedTimers.Add(timer, null);
			}
		}

		public static void Remove(Timer timer)
		{
			lock (s_rootedTimers)
			{
                s_rootedTimers.Remove(timer);
			}
		}
	}
}