ValueSequence

An enumerable sequence representing the values of a registry Key.

Members

Functions

getValue
Value getValue(size_t index)

The value at the given index.

opApply
int opApply(int delegate(ref Value value) dg)
opIndex
Value opIndex(size_t index)

The value at the given index.

Properties

count
size_t count [@property getter]

The number of values

Examples

Key key = ...
foreach (Value value; key.values)
{
    // using value
}

Meta