There is a bug in SvgAnimatedNumbers.cs:
public SvgAnimatedNumber(string str)
{
baseVal = SvgNumber.ParseNumber(str);
animVal = baseVal;
}
This is a problem on systems with other decimal separator then ".". I think this is the fix:
public SvgAnimatedNumber(string str)
{
baseVal = Double.Parse(str, SvgNumber.Format);
animVal = baseVal;
}
I checked all double.Parse() code lines. They look to be correct.
There is a bug in SvgAnimatedNumbers.cs: public SvgAnimatedNumber(string str) { baseVal = SvgNumber.ParseNumber(str); animVal = baseVal; }
This is a problem on systems with other decimal separator then ".". I think this is the fix: public SvgAnimatedNumber(string str) { baseVal = Double.Parse(str, SvgNumber.Format); animVal = baseVal; }
I checked all double.Parse() code lines. They look to be correct.
This work item was migrated from CodePlex
CodePlex work item ID: '1858' Vote count: '1'