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