E
Size: a a a
E
IC
AH
IC
buffer = ArrayPool<char>.Shared.Rent(arg.Length);
var charsWritten = Convert.ToBase64CharArray(arg, 0, arg.Length, buffer, 0);
AH
AH
buffer = ArrayPool<char>.Shared.Rent(arg.Length);
var charsWritten = Convert.ToBase64CharArray(arg, 0, arg.Length, buffer, 0);
AH
AH
IC
long outlen = ((long)inputLength) / 3 * 4;
outlen += ((inputLength % 3) != 0) ? 4 : 0;
NT
NT
AH
IC
AH
IC
var outlen = arg.Length / 3 * 4; // the base length - we want integer division here.
outlen += arg.Length % 3 != 0 ? arg.Length % 3 + 1 : 0;
I
AH
long outlen = ((long)inputLength) / 3 * 4;
outlen += ((inputLength % 3) != 0) ? 4 : 0;
I
IC
var outlen = arg.Length / 3 * 4; // the base length - we want integer division here.
outlen += arg.Length % 3 != 0 ? arg.Length % 3 + 1 : 0;
AH