Return more then one value by using Tuple

  1. //Return value more then one by using Tuple  
  2.   
  3. using System;  
  4. using System.Collections.Generic;  
  5. using System.Data.SqlClient;  
  6. using System.Linq;  
  7. using System.Text;  
  8. using System.Threading.Tasks;  
  9. namespace ConsoleApplication1  
  10. {  
  11.     class Program  
  12.     {  
  13.         public Tuple<stringintstring> ReturnMorethenOneValue()  
  14.         {  
  15.             return new Tuple<stringintstring>("Abrar Ahmad Ansari", 25, "Bangalore");  
  16.         }  
  17.         static void Main(string[] args)  
  18.         {  
  19.             var objTuple = new Program().ReturnMorethenOneValue();  
  20.             Console.WriteLine("Name: " + objTuple.Item1);  
  21.             Console.WriteLine("Age: " + objTuple.Item1);  
  22.             Console.WriteLine("City: " + objTuple.Item1);  
  23.             Console.ReadLine();  
  24.         }  
  25.     }  
  26. }