Skip to content

M_CodeJam_DebugCode_AssertArgument_1

andrewvk edited this page Jun 23, 2016 · 8 revisions

DebugCode.AssertArgument Method (Boolean, String, String, Object[])

Assertion for the argument value

Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#

[ConditionalAttribute("DEBUG")]
public static void AssertArgument(
	bool condition,
	string argName,
	string messageFormat,
	params Object[] args
)

VB

<ConditionalAttribute("DEBUG")>
Public Shared Sub AssertArgument ( 
	condition As Boolean,
	argName As String,
	messageFormat As String,
	ParamArray args As Object()
)

F#

[<ConditionalAttribute("DEBUG")>]
static member AssertArgument : 
        condition : bool * 
        argName : string * 
        messageFormat : string * 
        args : Object[] -> unit 

Parameters

 

condition
Type: System.Boolean
The condition to check
argName
Type: System.String
Name of the argument.
messageFormat
Type: System.String
The message format.
args
Type: System.Object[]
The arguments.

See Also

Reference

DebugCode Class
AssertArgument Overload
CodeJam Namespace

Clone this wiki locally