Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ToString()

override string System.AggregateException.ToString ( )
inline

Definition at line 202 of file AggregateException.cs.

203 {
205 stringBuilder.Append(base.ToString());
206 for (int i = 0; i < _innerExceptions.Length; i++)
207 {
208 if (_innerExceptions[i] != base.InnerException)
209 {
210 stringBuilder.Append("\r\n ---> ");
211 stringBuilder.AppendFormat(CultureInfo.InvariantCulture, SR.AggregateException_InnerException, i);
213 stringBuilder.Append("<---");
214 stringBuilder.AppendLine();
215 }
216 }
217 return stringBuilder.ToString();
218 }
readonly Exception[] _innerExceptions
static CultureInfo InvariantCulture

References System.AggregateException._innerExceptions, System.SR.AggregateException_InnerException, System.Globalization.CultureInfo.InvariantCulture, and System.AggregateException.ToString().

Referenced by System.AggregateException.ToString().