Tuple comparison appeared after C# 7.3.
Easily compare two tuples using the equality operator in C#.
Suppose we have two tuples-
var one = (x: 1, y: 2); var two = (p: 1, 2: 3, r: 3, s:4);
To compare them just use == operator-
if (one == two) Console.WriteLine("Both the tuples are same (values are same).");
Let’s see the code-
var one = (x: 1, y: 2); var two = (p: 1, 2: 3, r: 3, s:4); if (one == two) Console.WriteLine("Both the tuples are same (values are same)."); lse Console.WriteLine("Both the tuples values are not same.");
The above is the detailed content of How to compare two tuples in C#?. For more information, please follow other related articles on the PHP Chinese website!