What is indexing on asp.net?

Showing Answers 1 - 2 of 2 Answers

balaji

  • Sep 28th, 2006
 

Hai,

   I Think indexing can be achieved in Asp.Net(with c-sharp) with concept of Indexers which allows objects to be indexed in turn optimizes the performance.

with regards,

 Balaji.... 

  Was this answer useful?  Yes

Urvil Shah

  • Jun 20th, 2007
 

Indexer is like a property but with argument.

you can create the property using

public string this(int i)
{
    return myaaray[i];
}

Allow you to get the value from list of objects at particular index.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions