From ca24841d2e00c51a0a52df522139fcb096e0995f Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 27 Feb 2023 20:00:46 +0700 Subject: Use string.Create when available --- crypto/src/math/ec/abc/SimpleBigDecimal.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'crypto/src/math') diff --git a/crypto/src/math/ec/abc/SimpleBigDecimal.cs b/crypto/src/math/ec/abc/SimpleBigDecimal.cs index d5664dbfd..c69d02f0c 100644 --- a/crypto/src/math/ec/abc/SimpleBigDecimal.cs +++ b/crypto/src/math/ec/abc/SimpleBigDecimal.cs @@ -196,19 +196,18 @@ namespace Org.BouncyCastle.Math.EC.Abc } string leftOfPoint = floorBigInt.ToString(); - char[] fractCharArr = new char[scale]; - string fractStr = fract.ToString(2); + char[] rightOfPoint = new char[scale]; + string fractStr = fract.ToString(2); int fractLen = fractStr.Length; int zeroes = scale - fractLen; for (int i = 0; i < zeroes; i++) { - fractCharArr[i] = '0'; + rightOfPoint[i] = '0'; } for (int j = 0; j < fractLen; j++) { - fractCharArr[zeroes + j] = fractStr[j]; + rightOfPoint[zeroes + j] = fractStr[j]; } - string rightOfPoint = new string(fractCharArr); StringBuilder sb = new StringBuilder(leftOfPoint); sb.Append("."); -- cgit 1.5.1