LazyMember<T> constructor

LazyMember<T>(
  1. InitializeLazyMember<T> initializationDelegate
)
Constructor The initialization delegate to call for the item on first access

Implementation

LazyMember(InitializeLazyMember<T> initializationDelegate) {
  this._initializationDelegate = initializationDelegate;
}