16 lines
324 B
C#
16 lines
324 B
C#
|
|
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
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|