Tuple
उदाहरण
आइए अब सी# में 1-टुपल को लागू करने के लिए एक उदाहरण देखें -
using System; public class Demo { public static void Main(string[] args) { Tuple<int> tuple = new Tuple<int>(100); Console.WriteLine("Value = " + tuple.Item1); if (tuple.Item1 == 150) { Console.WriteLine(tuple.Item1); } if (tuple.Item1 == 100) { Console.WriteLine(tuple.Item1); } } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Value = 100 100
उदाहरण
आइए अब सी# में 1-टुपल को लागू करने के लिए एक और उदाहरण देखें -
using System; public class Demo { public static void Main(string[] args) { Tuple<string> tuple = new Tuple<string>("amit"); Console.WriteLine("Value = " + tuple.Item1); if (tuple.Item1 == "tom") { Console.WriteLine(tuple.Item1); } if (tuple.Item1 == "amit") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item1); } } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Value = amit Exists: Tuple Value = amit