FFMpegCore/FFMpegCore.Test/TasksExtensions.cs

14 lines
304 B
C#
Raw Permalink Normal View History

2020-04-28 14:21:48 +02:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace FFMpegCore.Test
{
static class TasksExtensions
{
2020-04-28 15:08:02 +02:00
public static T WaitForResult<T>(this Task<T> task) =>
task.ConfigureAwait(false).GetAwaiter().GetResult();
2020-04-28 14:21:48 +02:00
}
}