Initializes an instance of the Metric class, from the specified text.
Namespace: Facilita.Fc.RuntimeAssembly: fc_clr (in fc_clr.dll) Version: 9.5.7.98
Syntax
Parameters
- text
- Type: System String
A string that can converted into a Metric instance.
Return Value
A metric instance.Remarks
myMetric01=12,F
For pass values of true omit the ",F" from the string.
myMetric02=34
Examples
// construct a Metric instance string metricText = "myMetric01=12,F"; Metric myMetric = Metric.FromString(metricText);
See Also