IDataDictionary SetLong Method C# API
Sets a long value in the dictionary.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

void SetLong(
	string key,
	long val
)

Parameters

key
Type: System String
The key to associate with val in the dictionary.
val
Type: System Int64
The value to be associated with the key in the dictionary.
Remarks

key is associated with the value in the dictionary. If the key already exists in the dictionary then the old value is replaced by the new value, otherwise a new key/value pair is added to the dictionary.
Examples

The following example demonstrates setting a long value.
SetLong("timestamp", 9156598231230);
See Also