I have problem: I can in no way known I call this method:
public static Task<TResult> Run<TResult>(
Func<Task<TResult>> function
)
If you do not have a generic parameter that I know I can do this:
Task.Run( () => { Task.Delay(10000) });
Can you tell my how I can to this and why?
Regards!