0
What is the use of the ^= assignment operator in C#
Please try to explain with examples. I have done a lot of research on this and it just keeps getting harder to get. & Thanks in advance for your reply
2 Antworten
+ 5
Mr Ajiero
^ is bitwise xor operator :
x^=y is short form for x = x^y ;
I think, You can find clear explanation with example from here.
hope it helps.
https://www.sololearn.com/learn/4074/?ref=app
+ 1
Thanks Jayakrishna🇮🇳 . It was helpful