Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
in ci do
x &= ~1
これをpowershellで行う必要がありますか?ほとんどのことを試して、powershell リファレンスなどを確認しました。
ありがとう
&=PowerShell には、演算子に相当するものはありません。Powershell に相当するものは次のとおりです。
&=
$x = $x -band (-bnot 1)