Click or drag to resize

EnumExtensionsGetFlagsT Method

Gets the individual flags set on the specified value.

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

Parameters

value
Type: T
The value.

Type Parameters

T
The Enum type.

Return Value

Type: IEnumerableT
The individual flags set on the specified value.

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