代码总是抛出Null引用异常

时间:2018-04-23 08:52:15

标签: c# asp.net task-parallel-library nullreferenceexception

我有这段代码,即使变量不为null,我总是抛出一个空引用异常,我可以看到它的值:

httpClient.DownloadDocumentML(req)
   .ContinueWith(t =>
   {
       string x = t.Result.Document.DocumentData;
       byte[] arrayFile = Encoding.ASCII.GetBytes(x);
       byteArrays.Add(arrayFile);                     
       t.Wait();
       trash = byteArrays;
       Session["multipleFiles"] = byteArrays;                           
       //return Json("multiple");
   });

bytearrays变量是抛出空引用异常但它的值不为空。

0 个答案:

没有答案