सी # में एक इंडेक्सर किसी ऑब्जेक्ट को एक सरणी जैसे अनुक्रमित करने की अनुमति देता है। जब किसी वर्ग के लिए एक अनुक्रमणिका परिभाषित की जाती है, तो यह वर्ग एक आभासी सरणी के समान व्यवहार करता है। फिर आप ऐरे एक्सेस ऑपरेटर ([ ]) का उपयोग करके इस वर्ग के उदाहरण तक पहुँच सकते हैं।
इंडेक्सर्स को ओवरलोड किया जा सकता है। इंडेक्सर्स को कई मापदंडों के साथ भी घोषित किया जा सकता है और प्रत्येक पैरामीटर एक अलग प्रकार का हो सकता है।
निम्नलिखित C# में ओवरलोडेड इंडेक्सर्स का एक उदाहरण है -
उदाहरण
using System; namespace IndexerApplication { 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. A."; } } 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; } } } public int this[string name] { get { int index = 0; while(index < size) { if (namelist[index] == name) { return index; } index++; } return index; } } static void Main(string[] args) { IndexedNames names = new IndexedNames(); names[0] = "John"; names[1] = "Joe"; names[2] = "Graham"; names[3] = "William"; names[4] = "Jack"; names[5] = "Tom"; names[6] = "Tim"; //using the first indexer with int parameter for (int i = 0; i < IndexedNames.size; i++) { Console.WriteLine(names[i]); } //using the second indexer with the string parameter Console.WriteLine(names["Nuha"]); Console.ReadKey(); } } }
आउटपुट
John Joe Graham William Jack Tom Tim N. A. N. A. N. A. 10