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