-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_DebugEnumCode_StateFlagUnset__1
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Asserts that the specified state flag is not set.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
[ConditionalAttribute("DEBUG")]
public static void StateFlagUnset<TEnum>(
TEnum value,
TEnum flag,
string message
)
where TEnum : struct, new()
VB
<ConditionalAttribute("DEBUG")>
Public Shared Sub StateFlagUnset(Of TEnum As {Structure, New}) (
value As TEnum,
flag As TEnum,
message As String
)
F#
[<ConditionalAttribute("DEBUG")>]
static member StateFlagUnset :
value : 'TEnum *
flag : 'TEnum *
message : string -> unit when 'TEnum : struct, new()
- value
- Type: TEnum
The value. - flag
- Type: TEnum
The flag. - message
- Type: System.String
The message.
- TEnum
- The type of the enum value.