Click or drag to resize
MvKeyValueTableKeys Property
Gets the collection holding the keys contained in this table.

Namespace: RW.Server.Component
Assembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax
public ICollection<MvValue> Keys { get; }

Property Value

Type: ICollectionMvValue
The collection holding the keys of this table.

Implements

IDictionaryTKey, TValueKeys
Remarks

The order of the keys is unspecified, but it is the same order as the associated values Values property.

The returned collection is not a static copy; instead, the collection refers back to the keys in the original MvKeyValueTable.Therefore, changes to the MvKeyValueTable continue to be reflected in the keys collection.

Getting the value of this property is an O(1) operation.

See Also