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

Calls setValueForKey() with the passed key and value on each member of the array in turn.

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

Syntax

C#
public static void setValueForKey(
	this IList o,
	Object value,
	string key
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Sub setValueForKey ( _
	o As IList, _
	value As Object, _
	key As String _
)
Visual C++
[ExtensionAttribute]
public:
static void setValueForKey(
	IList^ o, 
	Object^ value, 
	String^ key
)

Parameters

o
Type: System.Collections..::.IList
The base array.
value
Type: System..::.Object
The value to set.
key
Type: System..::.String
The key to set the value for.

See Also