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

◆ Add() [3/3]

static unsafe uint[] System.Numerics.BigIntegerCalculator.Add ( uint[] left,
uint[] right )
inlinestatic

Definition at line 270 of file BigIntegerCalculator.cs.

271 {
272 uint[] array = new uint[left.Length + 1];
273 fixed (uint* left2 = left)
274 {
275 fixed (uint* right2 = right)
276 {
277 fixed (uint* bits = &array[0])
278 {
279 Add(left2, left.Length, right2, right.Length, bits, array.Length);
280 }
281 }
282 }
283 return array;
284 }

References System.Add, and System.array.