internal AbstractSortedGenericContainer(HandleWrapperClass handleObject, IntPtr nativeHandle, FromNativePointerArrayDelegate fromNativePointerArrayDelegate, bool cacheObjects)
 {
     _handleWrapper = handleObject;
     _nativeHandle  = nativeHandle;
     _fromNativePointerArrayDelegate         = fromNativePointerArrayDelegate;
     _defaultNativeNotifyMultiObjectDelegate = DefaultNotifyMultiObjectHandler;
     this.RegisterNotifyDelegate();
     _cache = cacheObjects;
 }
Exemplo n.º 2
0
 internal AbstractSortedGenericWithModifierContainer(HandleWrapperClass handleObject, IntPtr nativeHandle, FromNativePointerArrayDelegate fromNativePointerArrayDelegate, bool cacheObjects)
     : base(handleObject, nativeHandle, fromNativePointerArrayDelegate, cacheObjects)
 {
 }