14 lines
177 B
C#
14 lines
177 B
C#
namespace LeafWeb.WebCms.Controllers
|
|
{
|
|
public static class CompileFlag
|
|
{
|
|
public static bool IsDebug()
|
|
{
|
|
#if DEBUG
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
}
|
|
} |