using System;
using System.Collections.Generic;
using System.Text;

namespace TopshelfStudy.NetCoreDemo
{
    public static  class RuntimeUtil
    {
        /// <summary>
        /// 是否运行在Debug模式
        /// </summary>
        public static bool IsDebug
        {
            get
            {
                #pragma warning disable
#if DEBUG
                return true;
#endif
                return false;
#pragma warning restore
            }
        }
    }
}