Advertisement
Guest User

Untitled

a guest
Mar 28th, 2014
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. static void TestXor()
  2. {
  3. Console.WriteLine(CreateBool(1) ^ CreateBool(2));
  4. }
  5.  
  6. static unsafe bool CreateBool(byte bt)
  7. {
  8. bool bl;
  9. *((byte*)&bl) = bt;
  10. return bl;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement