Guest User

Untitled

a guest
Jan 12th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. Why does xor'ing two ushort values not return a ushort?
  2. void test()
  3. {
  4. ushort a = 0;
  5. ushort b = 0;
  6. ushort c = a ^ b; //ERROR
  7. }
Add Comment
Please, Sign In to add comment