SettingRule.BitwiseAnd(SettingRule, SettingRule) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a SettingRule that is true
when both a
and
b
are true
.
public static Microsoft.VisualStudio.Extensibility.Settings.SettingRule operator & (Microsoft.VisualStudio.Extensibility.Settings.SettingRule a, Microsoft.VisualStudio.Extensibility.Settings.SettingRule b);
static member ( &&& ) : Microsoft.VisualStudio.Extensibility.Settings.SettingRule * Microsoft.VisualStudio.Extensibility.Settings.SettingRule -> Microsoft.VisualStudio.Extensibility.Settings.SettingRule
Public Shared Operator And (a As SettingRule, b As SettingRule) As SettingRule
Parameters
The first operand of the logical AND operation.
The second operand of the logical AND operation.
Returns
A SettingRule that is true
when when both a
and
b
are true
.