You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For instance you provided "https://.../msft-20111231.xml", Gepsio throws an exception while converting "1.0200" to decimal in CalculationArc.cs\CalculationArc(INode CalculationArcNode).
This happens because of dot seperator.
Solution: Use Convert.ToDecimal(OrderString, System.Globalization.CultureInfo.InvariantCulture);
After making this changes, Gepsio works fine and shows labels for instance you provided.
Gepsio should be checked to ensure that all decimal conversions use invariant culture settings.
The text was updated successfully, but these errors were encountered:
Bug report from a comment on Issue 12:
Gepsio should be checked to ensure that all decimal conversions use invariant culture settings.
The text was updated successfully, but these errors were encountered: