What type should I use for a 128-bit number in in .NET?

It’s here in System.Numerics. “The BigInteger type is an immutable type that represents an arbitrarily large integer whose value in theory has no upper or lower bounds.”

var i = System.Numerics.BigInteger.Parse("10000000000000000000000000000000");

Leave a Comment