Tuple তুলনা C# 7.3 এর পরে এসেছে।
C# এ সমতা অপারেটর ব্যবহার করে সহজে দুটি টিপল তুলনা করুন।
ধরা যাক আমাদের দুটি টিপল আছে −
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).");
কোডটি দেখুন −
ব্যবহার করুনউদাহরণ
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.");