AcManager.Tools.AcManagersNew.AcItemWrapper.AcItemWrapper C# (CSharp) Method

AcItemWrapper() public method

public AcItemWrapper ( [ loader, [ initialValue ) : System
loader [
initialValue [
return System
        public AcItemWrapper([NotNull]IAcWrapperLoader loader, [NotNull]AcPlaceholderNew initialValue) {
            if (loader == null) throw new ArgumentNullException(nameof(loader));
            if (initialValue == null) throw new ArgumentNullException(nameof(initialValue));
            _loader = loader;
            _value = initialValue;
            IsLoaded = _value.GetType().IsSubclassOf(typeof(AcObjectNew));
        }