เกี่ยวกับบทเรียน
Bitwise operators
ในภาษา C# จะมีตัวดำเนินการระดับบิท (bitwise operators) โดยจะทำงานกับค่าของบิทในรูปแบบต่างๆ ของข้อมูลที่เก็บไว้ในตัวแปร
ตารางของ Bitwise operators ในภาษา C#
Symbol |
Description |
|
& |
Bitwise AND |
|
| |
Bitwise inclusive OR |
|
^ |
Bitwise exclusive OR |
|
~ |
bit inversion |
|
<< |
Shift bits left |
|
>> |
Shift bits right |