C# 异步回调传递参数

C# 异步回调传递参数,c#,asynccallback,C#,Asynccallback,我想将List传递到函数LoadHistoryAsync(列表项)中的AsyncCallback中,但是result中的AsyncState为null为什么 namespace ConsoleApplication3 { class Program { static void Main(string[] args) { List<int> Items = new List<int>(); Data D = new Data(

我想将
List
传递到函数
LoadHistoryAsync(列表项)
中的
AsyncCallback
中,但是
result中的
AsyncState
为null为什么

namespace ConsoleApplication3
{
class Program
{
    static void Main(string[] args)
    {
        List<int> Items = new List<int>();
        Data D = new Data();
        D.LoadHistoryAsync(Items);
        //D.LoadNewPointsAsync(Items);
        Console.ReadKey();
    }
}
public class Data
{
    public void LoadHistoryAsync(List<int> Items)
    {
        Action<List<int>> GetHistoryInformation = new Action<List<int>>(GetHistory);
        //IAsyncResult History = GetHistoryInformation.BeginInvoke(Items, null, null);
        IAsyncResult History = GetHistoryInformation.BeginInvoke(Items, new AsyncCallback(CallForNewData), null);
    }

    public void GetHistory(List<int> Items)
    {
        Random rnd = new Random();
        System.Threading.Thread.Sleep(rnd.Next(1,5000));
        Items.Add(1);
        Console.WriteLine("HistoryLoaded");
    }
    public void CallForNewData(IAsyncResult result)
    {
       Console.WriteLine("Result: {0}",result.AsyncState);
    }

    public void LoadNewPointsAsync(List<int> Items)
    {
        //while(!History.IsCompleted)
        //{
            System.Threading.Thread.Sleep(100);
        //}
        Action<List<int>> GetPointsInformation = new Action<List<int>>(GetPoints);
        IAsyncResult NewPoints = GetPointsInformation.BeginInvoke(Items, null, null);
    }

    public void GetPoints(List<int> Items)
    {
        Random rnd = new Random();
        System.Threading.Thread.Sleep(rnd.Next(1, 5000));
        Items.Add(2);
        Console.WriteLine("New data loaded");
    }
}
}
已解决问题。

来自:

BeginInvoke方法启动异步调用。它具有与要异步执行的方法相同的参数,另外还有两个可选参数。第一个参数是AsyncCallback委托,它引用异步调用完成时要调用的方法第二个参数是用户定义的对象,它将信息传递给回调方法

你传递一个
null
,你得到一个
null

IAsyncResult History = GetHistoryInformation.BeginInvoke(Items, new AsyncCallback(CallForNewData), Items);