[C#] In C#, this property is the indexer for the Matrix33 class.
[Visual Basic] Public Default Property Item( _ ByVal Int32 As Int32, _ ByVal Int32 As Int32 _ ) As [C#] public float this[ int Int32, int Int32 ] { get; set; } [C++] public: __property get_Single( int Int32, int Int32 ); public: __property void set_Single( int Int32, int Int32, float newValue ); [JScript] returnValue = Matrix33Object.Item( Int32, Int32 ); Matrix33Object.Item( Int32, Int32 ) = newValue; -or- returnValue = Matrix33Object( Int32, Int32 ); Matrix33Object( Int32, Int32 ) = 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.
Matrix33 Structure | mPhysics.Foundation Namespace