using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataCollectionSystem.CommonLib.Debug
{
public class Debugger
{
///
/// 调试状态 一般用来离线调试
///
///
public static Boolean isInDebug()
{
return System.Diagnostics.Debugger.IsAttached;
// return false;
}
}
}