Akka.Configuration.Config.GetIntList C# (CSharp) 메소드

GetIntList() 공개 메소드

Retrieves a list of int values from the specified path in the configuration.
public GetIntList ( string path ) : IList
path string The path that contains the values to retrieve.
리턴 IList
        public virtual IList<int> GetIntList(string path)
        {
            HoconValue value = GetNode(path);
            return value.GetIntList();
        }