I have an object that upon instantiation greats a unique id for itself via the constructor. My question may be silly but I cannot seem to find the answer.
Will the constructor be called upon rehydration from isolated storage? or is the constructor only called when using the ‘new’ keyword. My intention is not to have it called as I only want it to be called when instantiating for the first time.
The default constructor will be called during the deserialization process. It will create the object and then copy over the serialized properties/fields.