| ContactSetItem Property |
Gets or sets the
Contact at the specified index.
Namespace: DigitalRune.Geometry.CollisionsAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public Contact this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As Contact
Get
Set
public:
virtual property Contact^ default[int index] {
Contact^ get (int index) sealed;
void set (int index, Contact^ value) sealed;
}
abstract Item : Contact with get, set
override Item : Contact with get, set
Parameters
- index
- Type: SystemInt32
The zero-based index of the contact to get or set.
Property Value
Type:
ContactThe contact at the specified index.
Implements
IListTItemInt32Exceptions Remarks
This indexer is an O(1) operation.
See Also