Akka.Configuration.ConfigExtensions.IsNullOrEmpty C# (CSharp) Метод

IsNullOrEmpty() публичный статический Метод

Determines if the supplied configuration has any usable content period.
public static IsNullOrEmpty ( this config ) : bool
config this The configuration used as the source.
Результат bool
        public static bool IsNullOrEmpty(this Config config)
        {
            return config == null || config.IsEmpty;
        }
    }