Esempio n. 1
0
 public static double GetAttributeDouble(XmlAttribute Attr)
 {
     if (Attr != null)
     {
         return(CFindRep.IfNotNumberThen0Double(Attr.Value));
     }
     else
     {
         return(0);
     }
 }
Esempio n. 2
0
        private XmlElement GetElementBreak(XmlDocument XDoc, string Seconds)
        {
            double dSeconds = CFindRep.IfNotNumberThen0Double(Seconds);

            XmlElement el = XDoc.CreateElement("break");

            if (!string.IsNullOrEmpty(Seconds))
            {
                el.Attributes.Append(GetAttrTime(XDoc, dSeconds));
            }

            return(el);
        }