Click or drag to resize
DebugAssert Method (Boolean)
Checks for a condition; if the condition is false, displays a message box that shows the call stack.

Namespace: System.Diagnostics
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public static void Assert(
	bool condition
)

Parameters

condition
Type: SystemBoolean
The conditional expression to evaluate. If the condition is true, a failure message is not sent and the message box is not displayed.
See Also