标签: c# .net-core
我们是否在.net核心中使用C#支持System.Diagnostics.Debug.Assert()?是否有基于.net核心的替代方案?
答案 0 :(得分:9)
您可以check the API documentation,从那里可以看到.NET Core 1.0和更新版本以及NetStandard 1.0和更新版本都支持Debug.Assert(bool)。
Debug.Assert(bool)
如果它不适合您,您可能需要在项目中包含NuGet包System.Diagnostics.Debug才能显示它。
System.Diagnostics.Debug