Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. namespace Common.Helpers
  2. {
  3. public static class DebugHelper
  4. {
  5. public static bool IsDebug
  6. {
  7. get
  8. {
  9. #pragma warning disable
  10. #if DEBUG
  11. return true;
  12. #endif
  13. return false;
  14. #pragma warning restore
  15. }
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement