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

GetFloatList() 공개 메소드

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