我一直在查看我们的一个应用程序中的一些代码,如下所示:
catch (AggregateException ae)
{
this._logger.Log(ae.Flatten().InnerException.ToString(), Category.Exception, Priority.High);
}
我的问题是这个。我知道做什么AggregateException.Flatten()
,我知道AggregateException.Flatten().InnerExceptions
代表什么。但是,AggregateException.Flatten().InnerException
(单)代表什么?