Item property in c#
问题 Is item property in c# is always used like indexer in c#? Let me explain with an example. ArrayList is having many properties like count,capacity, and one of them is Item.Item Property unlike count and capacity which are accessed by putting dot after name of ArrayList ,is not used by keyword Item but directly by Indexer. e.g. ArrayList MyList = new ArrayList(); MyList.add(100); MyList[0] = 200; Like in above e.g. uses the Item keyword to define the indexers instead of implementing the Item