We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562d4c2 commit 59ed7d7Copy full SHA for 59ed7d7
DocumentFormat.OpenXml/src/Framework/OpenXmlPackage.cs
@@ -1507,10 +1507,7 @@ private string GetNextSequenceNumber(string contentType)
1507
{
1508
this._sequenceNumbers[contentType] += 1;
1509
// use the default read-only NumberFormatInfo that is culture-independent (invariant).
1510
- // return this._sequenceNumbers[contentType].ToString(NumberFormatInfo.InvariantInfo);
1511
-
1512
- // Let's use the number string in hex
1513
- return Convert.ToString(this._sequenceNumbers[contentType], 16);
+ return this._sequenceNumbers[contentType].ToString(NumberFormatInfo.InvariantInfo);
1514
}
1515
else
1516
0 commit comments