This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/VideoBrowser/Helpers/DebugHelper.cs
2023-07-24 12:00:34 +02:00

27 lines
503 B
C#

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