Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在内存中存储一个 256 位数字并对其执行基本的数学运算。
我该如何在 C# 中执行此操作?有我应该使用的图书馆吗?
BigInteger类型是否适合您的需求?它
表示任意大的有符号整数。
并提供预期的算术运算。
BigInteger也许是一种选择。
如果您只需要 256 位并对上溢/下溢进行特殊处理 - 您可能必须自己做(或找到一些不属于 .Net Framework 的现有库)。