using System.Runtime.CompilerServices; namespace TanksServer.Interactivity; public static class TaskExtensions { [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Task WhenAll(this IEnumerable tasks) => Task.WhenAll(tasks); }