I was wondering if there are any benefits to implementing the dispose feature for Tasks. Will this operate any different? Will this force the memory to clean up any faster?
Task updateTask = UpdateRemoteAsync() await updateTask; VS
using (Task updateTask = UpdateRemoteAsync()) { await updateTask; }