I need a large integer with a fixed value of allocated memory. For example, under this number I want to allocate strictly 128 bytes. At the same time with this number you need to perform simple arithmetic operations: addition, subtraction, exponentiation. Just BigInteger from System.Numerics does not suit me, as it dynamically allocates memory for numbers.
How to be?