[C#] In C#, this property is the indexer for the CalculateValueList class.
[Visual Basic] Public Default Property Item( _ ByVal index As Integer _ ) As CalculateValue [C#] public CalculateValue this[ int index ] { get; set; } [C++] public: __property CalculateValue* get_Item( int index ); public: __property void set_Item( int index, CalculateValue* newValue ); [JScript] returnValue = CalculateValueListObject.Item( index ); CalculateValueListObject.Item( index ) = newValue; -or- returnValue = CalculateValueListObject( index ); CalculateValueListObject( index ) = newValue;
[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
The indexer of the class. This indexer is the wrapper of the indexer of the IList interface. Its benefit is to return objects of type 'CalculateValue' instead of objects of type 'Object'.
CalculateValueList Class | XRules Namespace