Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void TestXor()
- {
- Console.WriteLine(CreateBool(1) ^ CreateBool(2));
- }
- static unsafe bool CreateBool(byte bt)
- {
- bool bl;
- *((byte*)&bl) = bt;
- return bl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement