IDataDictionary Get T  Method (String)C# API
Returns a reference to an object held in the dictionary.

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

T Get<T>(
	string key
)

Parameters

key
Type: System String
The key to be looked up in the dictionary.
Type Parameters

T
The type of value to get

Return Value

An object value held in the dictionary.
Exceptions

Remarks

The following example demonstrates getting an object from the dictionary.
object obj = Get("employee");
See Also