/// <summary> /// Retrieves a list of double values from the specified path in the configuration. /// </summary> /// <param name="path">The path that contains the values to retrieve.</param> /// <exception cref="InvalidOperationException">This exception is thrown if the current node is undefined.</exception> /// <returns>The list of double values defined in the specified path.</returns> public virtual IList <double> GetDoubleList(string path) { HoconValue value = GetNode(path); return(value.GetDoubleList()); }
public static object ParseDoubleList(HoconValue e) { return(e.GetDoubleList()); }