Files
SystemExtensions/SystemExtensions.NetStandard/Extensions/SemaphoreSlimExtensions.cs
T
2024-08-23 22:42:25 +02:00

12 lines
297 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace System.Extensions;
public static class SemaphoreSlimExtensions
{
public static async Task<SemaphoreSlimContext> Acquire(this SemaphoreSlim semaphore)
{
return await SemaphoreSlimContext.Create(semaphore);
}
}