Correct way of using Func<Task<T>> – Asp.net
I have two code section in both of them I'm trying to use Func<Task>. Can anyone point out the difference between below two code sections. Which approach should I follow. static void Main(string[] args) { Func<Task<int>> getter = async ()…