Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ RemoveTrailingComma()

static int System.Xml.Xsl.Runtime.DecimalFormatter.RemoveTrailingComma ( StringBuilder builder,
int commaIndex,
int decimalIndex )
inlinestaticprivate

Definition at line 177 of file DecimalFormatter.cs.

178 {
179 if (commaIndex > 0 && commaIndex == decimalIndex - 1)
180 {
181 builder.Remove(decimalIndex - 1, 1);
182 }
183 else if (decimalIndex > commaIndex)
184 {
185 return decimalIndex - commaIndex - 1;
186 }
187 return 0;
188 }

References System.Xml.Dictionary.

Referenced by System.Xml.Xsl.Runtime.DecimalFormatter.DecimalFormatter().