[This is preliminary documentation and is subject to change.]

Gets an array of the receiver's members' values for the given key.

Namespace:  KNKVC
Assembly:  KNKVC (in KNKVC.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static ArrayList valueForKey(
	this IList o,
	string key
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function valueForKey ( _
	o As IList, _
	key As String _
) As ArrayList
Visual C++
[ExtensionAttribute]
public:
static ArrayList^ valueForKey(
	IList^ o, 
	String^ key
)

Parameters

o
Type: System.Collections..::.IList
The base array.
key
Type: System..::.String
The key to retrieve.

Return Value

An array constructed by calling valueForKey() on each member of the array in turn.

See Also