Class Diagnostics
- Namespace
- Support
- Assembly
- Support.dll
public static class Diagnostics
- Inheritance
-
Diagnostics
- Inherited Members
Fields
DebugDefine
public const string DebugDefine = "DEBUG"
Field Value
ShrinkDynamicContainers
public const string ShrinkDynamicContainers = "SHRINK_DYNAMIC_CONTAINERS"
Field Value
WithInstrumentationDefine
public const string WithInstrumentationDefine = "WITH_INSTRUMENTATION"
Field Value
Methods
Question(bool)
An assertion that is questionable.
public static void Question(bool condition)
Parameters
condition
bool
Remarks
Use this in code where a condition looks like it needs to hold but may not. This is meant to be a temporary assert to help debug or understand code.
Question(bool, string)
An assertion that is questionable.
public static void Question(bool condition, string message)
Parameters
Remarks
Use this in code where a condition looks like it needs to hold but may not. This is meant to be a temporary assert to help debug or understand code.