Sunday 19 May 2019

C# Advanced Tutorial in Tamil | List with example

 Hi please find the List example below

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Generics
{
    class Program
    {
        static void Main(string[] args)
        {
            List<string> myclass = new List<string>();
            myclass.Add("Anto");
            myclass.Add("sujesh");
            myclass.Add("balaji");
            myclass.Add("Mani");
            for(int i =0;i < myclass.Count; i++)
            {
                Console.Write(myclass[i] + "\n");
            }
         
            Console.ReadKey();
        }
    }
}



List in tamil | C# Advanced Tutorial  in Tamil |learn C# in tamil | learn csharp in tamil | Generics with example in tamil | Generics with example | csharp Advanced | tamil Tutorial | anto tutorials | anto sj Tutorial | learn c# in tamil | learn csharp in tamil | C# List Tamil | csharp List tamil

No comments:

Post a Comment