Item Property
- Last UpdatedApr 08, 2026
- 1 minute read
An indexer for accessing elements of the internal value array for reading or writing.
public KrunchValue this[
int index
]; {get; set;}
public:
property KrunchValue^ default [int] {
KrunchValue^ get(int index);
void set (int index, KrunchValue^ value);
}
Parameters
- index
- The index value.
| Exception | Description |
|---|---|
| System.IndexOutOfRangeException | KrunchDescriptor is not initialized. |
| OASySDNA.Common.DNAException | KrunchValue at index does not have a valid value in its type member. |