AK.F1.Timing.Extensions.ExceptionExtensions.PreserveStackTrace C# (CSharp) 메소드

PreserveStackTrace() 공개 정적인 메소드

Preserves the stack trace of the specified System.Exception.
/// Thrown when is . ///
public static PreserveStackTrace ( this exc ) : void
exc this The exception.
리턴 void
        public static void PreserveStackTrace(this Exception exc)
        {
            Guard.NotNull(exc, "exc");

            _preserveStackTrace(exc);
        }