Monday, June 6, 2016

Use of Indexers in C#.net

//C#.net Indexers
using System;
namespace IndexerApp
{
   class IndexedNames
   {
      private string[] namelist = new string[size];
      static public int size = 10;
      public IndexedNames()
      {
         for (int i = 0; i < size; i++)
         namelist[i] = "N";
      }
   
      public string this[int index]
      {
         get
         {
            string tmp;
       
            if( index >= 0 && index <= size-1 )
            {
               tmp = namelist[index];
            }
            else
            {
               tmp = "";
            }
         
            return ( tmp );
         }
         set
         {
            if( index >= 0 && index <= size-1 )
            {
               namelist[index] = value;
            }
         }
      }
   
      static void Main(string[] args)
      {
         IndexedNames names = new IndexedNames();
         names[0] = "Zara";
         names[1] = "Riz";
         names[2] = "Nuha";
         names[3] = "Asif";
         names[4] = "Davinder";
         names[5] = "Sunil";
         names[6] = "Rubic";
         for ( int i = 0; i < IndexedNames.size; i++ )
         {
            Console.WriteLine(names[i]);
         }
       
         Console.ReadKey();
      }
   }
}

===============================================

O/P:=
Zara
Riz
Nuha
Asif
Davinder
Sunil
Rubic
N
N
N

No comments: