Files
BeWoPlaner/BeWoPlanerMobil/Util/HtmlHelperExtensions.cs

16 lines
324 B
C#
Raw Normal View History

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
}
}
}