ExceptionHelper.cs 193 B

123456789101112
  1. using System;
  2. namespace Hotfix
  3. {
  4. public static class ExceptionHelper
  5. {
  6. public static string ToStr(this Exception exception)
  7. {
  8. return (string)exception.Data["StackTrace"];
  9. }
  10. }
  11. }