Create a Task with an Action<T, T, … n> multiple parameters
问题 I want to add multiple parameter in a Task containing Action. I reviewed the existing stack-overflow question Create a Task with an Action<T> Kindly assist me how to pass multiple arguments in a Action method in a Task Action<string, int> action = (string msg, int count) => { Task.Factory.StartNew(async () => { await LoadAsync(msg, count); }); }; Task task = new Task(action, ....); The Action Method is public static async Task<string> LoadAsync(string message, int count) { await Task.Run(() =