Exemple #1
0
        public MyComponent(IMyComponentConfiguration config)
        {
            if (config == null)
            {
                throw new ArgumentNullException(nameof(config));
            }

            _config = config;
        }
Exemple #2
0
 public MyComponent(IMyComponentConfiguration config)
 {
     _config = config ?? throw new ArgumentNullException(nameof(config));
 }