Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để so sánh hai bộ giá trị trong C #?


So sánh Tuple xuất hiện sau C # 7.3.

Dễ dàng so sánh hai bộ giá trị bằng cách sử dụng toán tử bình đẳng trong C #.

Giả sử chúng ta có hai bộ giá trị -

var one = (x: 1, y: 2);
var two = (p: 1, 2: 3, r: 3, s:4);

Để so sánh chúng, chỉ cần sử dụng toán tử ==-

if (one == two)
Console.WriteLine("Both the tuples are same (values are same).");

Hãy sử dụng xem mã -

Ví dụ

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.");