UIntExtensions.HasAnyFlag

Extension Method in UIntExtensions

Declaration

public static bool HasAnyFlag(this uint mask, uint flags)

Description

Checks if any of the given flags are set in the bitmask. (mask & flags) != 0

Parameters

maskThe mask to check.
flagsThe flags to check for.

Returns

boolTrue if any of the flags are set in the mask.