mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-09 04:19:47 +08:00
21 lines
511 B
C#
21 lines
511 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MicaSetup.Helper;
|
|
|
|
public static class TaskExtension
|
|
{
|
|
[SuppressMessage("Style", "IDE0060:")]
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void Forget(this Task self)
|
|
{
|
|
}
|
|
|
|
[SuppressMessage("Style", "IDE0060:")]
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void Forget(this ConfiguredTaskAwaitable self)
|
|
{
|
|
}
|
|
}
|