AK.F1.Timing.Extensions.ExceptionExtensions.PreserveStackTrace C# (CSharp) Method

PreserveStackTrace() public static method

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

            _preserveStackTrace(exc);
        }