namespace VideoBrowser.Helpers
{
///
/// Defines the .
///
public class DebugHelper
{
#region Properties
///
/// Gets a value indicating whether IsDebug.
///
internal static bool IsDebug
{
get
{
#if DEBUG
return true;
#else
return false;
#endif
}
}
#endregion Properties
}
}