C#位异或 如何计算

2025-01-03 19:42:32
推荐回答(1个)
回答1:

int x = 0x0f;
int y = 0x01;
int result = x ^ y;  //按位异或