Sets an ArrayList value in the dictionary.
Namespace: Facilita.Fc.RuntimeAssembly: fc_clr (in fc_clr.dll) Version: 9.5.7.98
Syntax
Parameters
- key
- Type: System String
The key to associate with val in the dictionary.
- val
- Type: System.Collections ArrayList
The ArrayList to be associated with the key in the dictionary.
Implements
IDataDictionary SetList(String, ArrayList)Remarks
Examples
ArrayList hostList = new ArrayList(); hostList.Add("www.testplant.com"); SetList("hosts", hostList);
See Also