jsonnull class : Fitted getter
Description
Gets a value that indicates whether this instance was already initialized.
Syntax
jsonnullInstance.Fitted
Arguments
None
Return value
| Class | Description |
| bool | A value that indicates whether this instance was already initialized. |
Sample code
| 1: | jsonnull jsn; |
| 2: | bool init = jsn.Fitted; // true |
| 3: | jsn = new jsonnull(); |
| 4: | init = jsn.Fitted; // true |
Notes
Instances created by declaration are initialized. That is, Fitted always returns true.
Links for reference
None.


