Skip to content

M_CodeJam_EnumCodeExceptions_ArgumentAnyFlagSet__1

Andrew Koryavchenko edited this page Jul 4, 2017 · 3 revisions

EnumCodeExceptions.ArgumentAnyFlagSet(TEnum) Method

Creates for any bit from flag is set case.

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

Syntax

C#

public static ArgumentException ArgumentAnyFlagSet<TEnum>(
	string argumentName,
	TEnum value,
	TEnum flags
)
where TEnum : struct, new(), IComparable, IFormattable, IConvertible

VB

Public Shared Function ArgumentAnyFlagSet(Of TEnum As {Structure, New, IComparable, IFormattable, IConvertible}) ( 
	argumentName As String,
	value As TEnum,
	flags As TEnum
) As ArgumentException

F#

static member ArgumentAnyFlagSet : 
        argumentName : string * 
        value : 'TEnum * 
        flags : 'TEnum -> ArgumentException  when 'TEnum : struct, new() and IComparable and IFormattable and IConvertible

Parameters

 

argumentName
Type: System.String
Name of the argument.
value
Type: TEnum
The value.
flags
Type: TEnum
The bitwise combinations of the flags.

Type Parameters

 

TEnum
The type of the enum value.

Return Value

Type: ArgumentException
Initialized instance of

See Also

Reference

EnumCodeExceptions Class
CodeJam Namespace
System.ArgumentException
System.ArgumentException

Clone this wiki locally