an
saurus
tags:
c#-to-vb.net
operators
xor
views:
239
answers:
1
+2
Q:
^= operator in vb.net (Xor Equals)?
Is there an equivalent in VB.NET to the C# ^= operator?
+1
A:
You have to code it like this:
A = A Xor B
Joel Coehoorn
2010-03-15 01:54:14
related questions
How can I repeat a string in Perl?
How is "20" and 20 considered equal in JavaScript?
In javascript, can I override the brackets to access characters in a string?
php operator <>
What does '^' do in c# (Enums)?
FizzBuzz using Ternary Operator
Why don't C++ compilers define operator== and operator!= ?
K & R Question: Need help understanding "getbits()" method in Chapter 2
In Python, what is the difference between '/' and '//' when used for division?
What does the C# operator => mean?
Boolean 'NOT' in T-SQL not working on 'bit' datatype?
What's the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, ...)
Priority of C++ operators "&" and "->"
What does the code if ( blah(), 5) {} do?
Absolute Beginner's Guide to Bit Shifting?
PHP alias @ function
Suppress error with @ operator in PHP
How do I get a decimal value when using the division operator in Python?
How to prevent creating intermediate objects in cascading operators?
Dynamically created operators
Why Does Ruby Only Permit Certain Operator Overloading
relational operator expression order
How do the equality (== double equals) and identity (=== triple equals) comparison operators differ?
What does the ',' operator do in C?
What is the diffference between the | and || or operators?