EnumExtensionsGetFlagsCountTEnum Method
Gets the number of bits set in value.
It is not checked, whether all flags are defined in TEnum.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static int GetFlagsCount<TEnum>(
this TEnum value
)
where TEnum : struct, new()
<ExtensionAttribute>
Public Shared Function GetFlagsCount(Of TEnum As {Structure, New}) (
value As TEnum
) As Integer
public:
[ExtensionAttribute]
generic<typename TEnum>
where TEnum : value class, gcnew()
static int GetFlagsCount(
TEnum value
)
[<ExtensionAttribute>]
static member GetFlagsCount :
value : 'TEnum -> int when 'TEnum : struct, new()
- value TEnum
- The value to check.
- TEnum
- The type of the enum value.
Int32The number of bits set in
value.In Visual Basic and C#, you can call this method as an instance method on any object of type
TEnum. 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).