C# 7.3 के बाद Tuple तुलना हुई।
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.");