# HG changeset patch # User IBBoard # Date 1238272660 0 # Node ID 14f3daf48ba5259c127e537c8b11864edc076a52 # Parent 148edabc9c730ad564015d9ec25191f81f98abf1 Re #18 - Migrate XML handling methods to core utils * Make double parsing method public diff -r 148edabc9c73 -r 14f3daf48ba5 Xml/XmlTools.cs --- a/Xml/XmlTools.cs Sat Mar 28 20:36:20 2009 +0000 +++ b/Xml/XmlTools.cs Sat Mar 28 20:37:40 2009 +0000 @@ -49,7 +49,7 @@ /// /// The value of the attribute as an double /// - private double GetDoubleValueFromAttribute(XmlElement elem, string attributeName) + public static double GetDoubleValueFromAttribute(XmlElement elem, string attributeName) { double doubleVal = double.NaN; string attribValue = elem.GetAttribute(attributeName);