Advertisement
touhid_xml

Indexer (class file)

Apr 29th, 2013
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Indexer
  7. {
  8.     class model
  9.     {
  10.         public String this[int index]{
  11.             get { return MyArray[index]; }
  12.  
  13.             set { MyArray[index] = value; }
  14.         }
  15.         String[] MyArray = {"Touhid", "Shubho", "Anondo"};
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement