c# – Mono Endianness

前端之家收集整理的这篇文章主要介绍了c# – Mono Endianness前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
与.NET的东西相当简单 – 所有(包括ARM ASFAIK)运行的小端.

我的问题是:在Mono和(潜在地)大端系统上是什么? Int32 / Int64结构中的位是否相反(与x86相比)或框架是否强制小端序列?

谢谢

解决方法

你认为所有MS .NET都是小端点的说法是不正确的.这取决于您正在运行的架构 – CLR规范说:

From the CLI Annotated Standard (p.161) — Partition I,section 12.6.3: “Byte Ordering”:

For data types larger than 1 byte,the byte ordering is dependent on the target cpu. Code that depends on byte ordering may not run on all platforms. […]

(取自this SO答案)

有关BitConverter内部的更多信息以及如何处理字节顺序,请参阅this答案.

原文链接:https://www.f2er.com/csharp/94962.html

猜你在找的C#相关文章