INamedIndexer 接口 | |
This interface is used to index a collection using a numeric and a string index and is implemented by the
typed array class ('ARRAY OF'). If your elements inside the collection implement the IIndexProperties interface then
the lookup of the property inside array element will be resolved with a call to the named indexer on that object.
命名空间:
XSharp
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 public interface INamedIndexer
INamedIndexer 类型公开以下成员。
属性
| 名称 | 说明 |
---|
| Item | 使用零为基础的数组索引来获取/设置数组元素。 |
Top备注
这个类型的索引器是基于零的,但是在你的 PRG 代码中,你可以使用一为基础的数组索引。
当编译器检测到对实现了这个接口的类的索引操作时,编译器会自动 调整索引(减去一),除非启用了/az编译器选项。
参见