dictionary class : Fitted getter
Description
Gets the value that indicates whether this instance was already initialized.
Syntax
dictionaryInstance.Fitted
Arguments
None
Return value
Class | Description |
bool | The value that indicates whether this instance was already initialized. |
Sample code
//anyDictionary is a instance of dictionary type.
bool init = anyDictionary.Fitted;
Notes
Instance that is created by declaration have been already initialized.
Links for reference
None