Unity 字节单位换算
Posted DaLiangChen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity 字节单位换算相关的知识,希望对你有一定的参考价值。
/// <summary>字节单位换算</summary>
public static string ByteConversion(double length)
string temp;
if (length < 1024)
temp = Math.Round(length, 0) + "B";
else if (length < 1024 * 1024)
temp = Math.Round(length / (1024), 0) + "KB";
else if (length < 1024 * 1024 * 1024)
temp = Math.Round(length / (1024 * 1024), 2) + "MB";
else
temp = Math.Round(length / (1024 * 1024 * 1024), 2) + "GB";
return temp;
以上是关于Unity 字节单位换算的主要内容,如果未能解决你的问题,请参考以下文章