Akka.Configuration.Config.GetDecimalList C# (CSharp) Метод

GetDecimalList() публичный Метод

Retrieves a list of decimal values from the specified path in the configuration.
public GetDecimalList ( string path ) : IList
path string The path that contains the values to retrieve.
Результат IList
        public virtual IList<decimal> GetDecimalList(string path)
        {
            HoconValue value = GetNode(path);
            return value.GetDecimalList();
        }