2
0
mirror of synced 2025-01-14 18:44:29 +00:00
2023-03-21 13:24:58 +01:00

17 lines
301 B
C#

namespace CodexDistTestCore
{
public static class Utils
{
public static void Sleep(TimeSpan span)
{
Thread.Sleep(span);
}
public static T Wait<T>(Task<T> task)
{
task.Wait();
return task.Result;
}
}
}