mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
12 lines
206 B
C#
12 lines
206 B
C#
#if NEED_TCS_SHIM
|
|
|
|
namespace System.Threading.Tasks
|
|
{
|
|
internal class TaskCompletionSource : TaskCompletionSource<bool>
|
|
{
|
|
public void TrySetResult() => TrySetResult(true);
|
|
}
|
|
}
|
|
|
|
#endif
|