Home  >  Article  >  Backend Development  >  Swapping two variables in one line using C#

Swapping two variables in one line using C#

WBOY
WBOYforward
2023-08-26 20:01:131001browse

使用 C# 在一行中交换两个变量

To swap two variables in a single line using the Bitwise XOR Operator.

val1 = val1 ^ val2 ^ (val2 = val1);

Above, we have set the values ​​−

int val1 = 30;
int val2 = 60;

The following are Example of swapping variables using one line of code in C#:

Example

using System;

class Demo {

   public static void Main(String[] args) {
      int val1 = 30;
      int val2 = 60;

      Console.WriteLine("Values before swap");
      Console.WriteLine(val1);
      Console.WriteLine(val2);

      val1 = val1 ^ val2 ^ (val2 = val1);

      Console.WriteLine("Values after swap");
      Console.WriteLine(val1);
      Console.WriteLine(val2);
   }
}

The above is the detailed content of Swapping two variables in one line using C#. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete