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