Ejemplo n.º 1
0
        public List <double> GetChildrenValuesAsDoublesCompact(XmlNode node, string name, bool mandatory)
        {
            string s = GetChildValue(node, name, mandatory);

            return(Parsers.ParseListOfValues <double>(s, Parsers.ParseDouble));
        }
Ejemplo n.º 2
0
        public List <Period> GetChildrenValuesAsPeriods(XmlNode node, string name, bool mandatory)
        {
            string s = GetChildValue(node, name, mandatory);

            return(Parsers.ParseListOfValues <Period>(s, Parsers.ParsePeriod));
        }