PowerShell – Bitwise Logical Operators
PowerShell provides below list of Bitwise operators and these ONLY works on Integer types. Why only Integer types? Because, these operators works on bits (0s and 1s) and only numeric types can support bitwise operations. Bitwise AND -band operator This operator takes two operands as inputs and apply the bitwise AND operation on each bit […]