You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library should allow lazy and strict instantiation of metadata objects.
Currently, strict is supported.
But lazy instantiation should also be available, where the library fully reads in the assembly and then instantiates metadata objects as they are requested (using an if (_backingField == null) { Instantiate(_backingField); } return _backingField; property pattern.
The text was updated successfully, but these errors were encountered:
The library should allow lazy and strict instantiation of metadata objects.
Currently, strict is supported.
But lazy instantiation should also be available, where the library fully reads in the assembly and then instantiates metadata objects as they are requested (using an
if (_backingField == null) { Instantiate(_backingField); } return _backingField;
property pattern.The text was updated successfully, but these errors were encountered: