DebugHelper.cs 256 B

1234567891011121314151617
  1. namespace VberZero.Tools;
  2. public static class DebugHelper
  3. {
  4. public static bool IsDebug
  5. {
  6. get
  7. {
  8. #pragma warning disable
  9. #if DEBUG
  10. return true;
  11. #endif
  12. return false;
  13. #pragma warning restore
  14. }
  15. }
  16. }