json class : Fitted getter
Description
Gets a value that indicates whether this instance was already initialized.
Syntax
jsonInstance.Fitted
Arguments
None
Return value
Class | Description |
bool | A value that indicates whether this instance was already initialized. |
Sample code
1: | json jsonIns = new json(); |
2: | bool init = jsonIns.Fitted; // false. |
Notes
Instance that is created by declaration is still uninitialized.
Links for reference
None.