Click or drag to resize

EnumExtensionsClearFlagsT Method

Clears the specified flags on the specified value.

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

Parameters

value
Type: T
The value.
flags
Type: T
The flags.

Type Parameters

T
The Enum type.

Return Value

Type: T
The value with the specified flags cleared.

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