Skip to content

M_CodeJam_EnumHelper_IsFlagSet__1

andrewvk edited this page Jun 23, 2016 · 5 revisions

EnumHelper.IsFlagSet(TEnum) Method

[This is preliminary documentation and is subject to change.]

Determines whether the specified flag is set.

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

Syntax

C#

public static bool IsFlagSet<TEnum>(
	this TEnum value,
	TEnum flag
)
where TEnum : struct, new(), IComparable, IFormattable, IConvertible

VB

<ExtensionAttribute>
Public Shared Function IsFlagSet(Of TEnum As {Structure, New, IComparable, IFormattable, IConvertible}) ( 
	value As TEnum,
	flag As TEnum
) As Boolean

F#

[<ExtensionAttribute>]
static member IsFlagSet : 
        value : 'TEnum * 
        flag : 'TEnum -> bool  when 'TEnum : struct, new() and IComparable and IFormattable and IConvertible

Parameters

 

value
Type: TEnum
The value.
flag
Type: TEnum
The flag.

Type Parameters

 

TEnum
The type of the enum.

Return Value

Type: Boolean
true if the value includes all bits of the flag or the flag is zero.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also

Reference

EnumHelper Class
CodeJam Namespace

Clone this wiki locally