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 字节单位换算的主要内容,如果未能解决你的问题,请参考以下文章

文件大小单位的换算不清楚: 字节、KB、MB、GB、TB、PB、EB的单位换算

字节、kb、mb等单位,是怎样换算的?

字节、kb、mb等单位,是怎样换算的?

Mb与Kb和字节之间的换算关系是啥?

字节、kb、M怎么换算

计算机基础存储单位换算