__Usual.Item 属性 (Int32, Int32) | |
使用零为基础的数组索引来获取/设置数组元素。
命名空间:
XSharp
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 PROPERTY SELF[
index1 AS LONG,
index2 AS LONG
] AS USUAL GET SET
public __Usual this[
int index1,
int index2
] { get; set; }
查看代码参数
- index1
- 类型:Int32
- index2
- 类型:Int32
这个索引器是基于零的,但是在你的 PRG 代码中,你可以使用一为基础的数组索引。
编译器会识别到这个属性是实现了一个特殊接口的类型的一部分并且会从索引中减去一,除非启用了/az编译器选项。
返回值
类型:
__UsualThe element stored at the indicated location in the array.
实现
ItemInt32, Int32备注
在你的 PRG 代码中,你可以使用一为基础的数组索引来访问元素。 编译器会识别到这个属性是实现了一个特殊接口的类型的一部分
并且会从索引中减去一,除非启用了/az编译器选项。
备注 When the contents of the USUAL is not an array or does not support indexed access then a runtime error is generated.
参见