C# Class KNFoundation.KNKVC.KNArrayKVC

IList specific KVC features.
显示文件 Open project: bt-browser/KNFoundation

Public Methods

Method Description
SetValueForKey ( this o, Object value, String key ) : void

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

ValueForKey ( this o, String key ) : ArrayList

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

Method Details

SetValueForKey() public static method

Calls SetValueForKey() with the passed key and value on each member of the array in turn.
public static SetValueForKey ( this o, Object value, String key ) : void
o this The base array.
value Object The value to set.
key String The key to set the value for.
return void

ValueForKey() public static method

Gets an array of the receiver's members' values for the given key.
public static ValueForKey ( this o, String key ) : ArrayList
o this The base array.
key String The key to retrieve.
return System.Collections.ArrayList