Sets a list 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 list in the dictionary.
- list
- Type: System.Collections ArrayList
The value to be associated with the key in the dictionary.
Remarks
Examples
ArrayList staff = new ArrayList(); staff.AddRange(new string[] = {"Peter","Gordon","Ian"}); SetList("directors", staff);
See Also