AK.F1.Timing.Extensions.ExceptionExtensionsTest.GetFatalExceptions C# (CSharp) 메소드

GetFatalExceptions() 개인적인 메소드

private GetFatalExceptions ( ) : IEnumerable
리턴 IEnumerable
        private IEnumerable<Exception> GetFatalExceptions()
        {
            yield return (Exception)FormatterServices.GetUninitializedObject(typeof(ThreadAbortException));
            yield return new StackOverflowException();
            yield return new OutOfMemoryException();
            yield return new ExecutionEngineException();
            yield return new ArgumentException();
        }