2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 13:33:13 +00:00

added Wait

This commit is contained in:
2019-12-31 12:56:06 +03:00
parent 3375a814e6
commit ed34ae229d
4 changed files with 14 additions and 2 deletions

View File

@ -51,6 +51,11 @@ namespace Esyur.Core
return new AsyncAwaiter<object[]>(this);
}
public new object[] Wait()
{
return (object[])base.Wait();
}
public void Seal()
{