Click or drag to resize

EnumExtensionsIsAnyFlagSetT Method

Determines whether any of the specified flags is set on the specified value.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static bool IsAnyFlagSet<T>(
	this T value,
	T flag
)
where T : struct, new()

Parameters

value
Type: T
The value.
flag
Type: T
The flag.

Type Parameters

T
The Enum type.

Return Value

Type: Boolean
True if any of the specified flags is set.

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