Akka.Configuration.Config.Config C# (CSharp) Method

Config() public method

Initializes a new instance of the Config class.
The source configuration cannot be null.
public Config ( Config source, Config fallback ) : System
source Config The configuration to use as the primary source.
fallback Config The configuration to use as a secondary source.
return System
        public Config(Config source, Config fallback)
        {
            if (source == null)
                throw new ArgumentNullException("source");

            Root = source.Root;
            Fallback = fallback;
        }

Same methods

Config::Config ( ) : System
Config::Config ( Akka.Configuration.Hocon.HoconRoot root ) : System