-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_DebugCode_BugIf
Andrew Koryavchenko edited this page Jul 4, 2017
·
3 revisions
Asserts if the given condition is satisfied.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
[ConditionalAttribute("DEBUG")]
public static void BugIf(
bool condition,
string message
)
VB
<ConditionalAttribute("DEBUG")>
Public Shared Sub BugIf (
condition As Boolean,
message As String
)
F#
[<ConditionalAttribute("DEBUG")>]
static member BugIf :
condition : bool *
message : string -> unit
- condition
- Type: System.Boolean
The condition to check. - message
- Type: System.String
The message.