C# 4.0 included a new feature called Tuple. A tuple is a data structure that has a specific number and sequence of elements. Tuple can be used in several ways. Let’s see, how tuple can be used to return multiple values from a method.
using System; namespace TupleApplication { class Mainprogram { static void Main(string[] args) { ClassTuple objTuple = new ClassTuple(); var tuple = objTuple.Operations("Aditya","Singh","Patel","7798930674"); Console.WriteLine("FirstName:{0}, MiddleName:{1}, LastName :{2}, ContactNo:{3}", tuple.Item1, tuple.Item2, tuple.Item3, tuple.Item4); System.Threading.Thread.Sleep(2000); } } class ClassTuple { public Tuple<string, string, string, string> Operations(string fname, string Mname, string Lname, string Contact) { return Tuple.Create(fname, Mname, Lname,Contact); } } }
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
C# 4.0 included a new feature called Tuple. A tuple is a data structure that has a specific number and sequence of elements.
Tuple can be used in several ways. Let’s see, how tuple can be used to return multiple values from a method.