I didn't find any thing online about this function this is the example code
class Program
{
static void Main(string[] args)
{
int num1 = 20;
int num2 = 30;
num1 ^= num2;
Console.WriteLine(num1 + "," + num2);
}
}