Bytes To Kb - CSharp System

CSharp examples for System:Byte Array

Description

Bytes To Kb

Demo Code



public class Main{
        public static float BytesToKb(long? bytes)
        {/*www . j a  v a2 s. c  om*/
            return (float)bytes / 1000;
        }
}

Related Tutorials