EnumExtensionsIsSingleFlagTEnum(TEnum) Method
Gets whether only a single bit is set in value. It is not checked, whether this flag is defined in TEnum.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.1.0
public static bool IsSingleFlag<TEnum>(
this TEnum value
)
where TEnum : struct, new()
<ExtensionAttribute>
Public Shared Function IsSingleFlag(Of TEnum As {Structure, New}) (
value As TEnum
) As Boolean
public:
[ExtensionAttribute]
generic<typename TEnum>
where TEnum : value class, gcnew()
static bool IsSingleFlag(
TEnum value
)
[<ExtensionAttribute>]
static member IsSingleFlag :
value : 'TEnum -> bool when 'TEnum : struct, new()
- value TEnum
- The value to check.
- TEnum
- The type of the enum value.
Boolean, if only a single bit is set in
value; otherwise,
.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).