Ejemplo n.º 1
0
        public DpdtCodeLensListener(
            ContainerAndScanner containerAndScanner
            )
        {
            if (containerAndScanner is null)
            {
                throw new ArgumentNullException(nameof(containerAndScanner));
            }

            _containerAndScanner = containerAndScanner;
        }
Ejemplo n.º 2
0
        public IntellisenseStatusContainer(
            FullyLoadedStatusContainer flsc,
            ContainerAndScanner containerAndScanner
            )
        {
            if (flsc is null)
            {
                throw new ArgumentNullException(nameof(flsc));
            }

            if (containerAndScanner is null)
            {
                throw new ArgumentNullException(nameof(containerAndScanner));
            }
            _flsc = flsc;
            _containerAndScanner = containerAndScanner;
        }