ValueNameSequence

An enumerable sequence representing the names of the values of a registry Key.

Members

Functions

getValueName
string getValueName(size_t index)

The name of the value at the given index.

opApply
int opApply(int delegate(ref string name) dg)
opIndex
string opIndex(size_t index)

The name of the value at the given index.

Properties

count
size_t count [@property getter]

The number of values.

Examples

Key key = ...
foreach (string valueName; key.valueNames)
{
    // using valueName
}

Meta