Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
PortCMIS 0.2.0
-
None
-
None
Description
this is the same bug reported in:
https://issues.apache.org/jira/browse/CMIS-1018
appearing in another file, BrowserBinding.cs, line 520
Wrong:
return ((BigInteger)value).ToString("#", CultureInfo.InvariantCulture);
Corrected:
return ((BigInteger)value).ToString("0", CultureInfo.InvariantCulture);