using System.Web.Mvc; namespace BeWoPlanerMobil.Util { public static class HtmlHelperExtensions { public static bool IsInDebugMode(this HtmlHelper htmlHelper) { #if DEBUG return true; #else return false; #endif } } }